element_visiable.scss 565 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import '@/style/main.scss';
  2. #app {
  3. .el-button {
  4. font-weight: 400;
  5. border-radius: 2px;
  6. }
  7. }
  8. ::-webkit-scrollbar {
  9. @apply hidden;
  10. }
  11. .gva-search-box {
  12. @apply p-6 pb-0.5 bg-white rounded mb-3;
  13. }
  14. .gva-form-box {
  15. @apply p-6 bg-white rounded;
  16. }
  17. .gva-pagination {
  18. @apply flex justify-end;
  19. .el-pagination__editor {
  20. .el-input__inner {
  21. @apply h-8;
  22. }
  23. }
  24. .is-active {
  25. @apply rounded text-white;
  26. background: var(--el-color-primary);
  27. color: #ffffff !important;
  28. }
  29. }