You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
726 B

3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__file-table()
  7. {
  8. .file-table {
  9. display: block;
  10. width: 100%;
  11. &__row {
  12. display: flex;
  13. flex-wrap: wrap;
  14. padding: 5px 0;
  15. border-bottom: 1px solid $grey;
  16. }
  17. &__inner {
  18. width: 100%;
  19. }
  20. &__column {
  21. display: flex;
  22. flex: 2;
  23. align-items: center;
  24. &--select {
  25. max-width: 30px;
  26. input[type=checkbox] {
  27. margin: -17px 0 0 0;
  28. }
  29. }
  30. }
  31. }
  32. .bucket-filemanager {
  33. padding: 10px 15px 15px 15px;
  34. border: 1px solid $grey-light;
  35. }
  36. }