storage.css59 lines · main
| 1 | @reference "./globals.css"; |
| 2 | |
| 3 | .storage-container { |
| 4 | .sbui-space-col { |
| 5 | @apply grow; |
| 6 | #files { |
| 7 | @apply h-full; |
| 8 | } |
| 9 | } |
| 10 | .sbui-btn { |
| 11 | @apply focus:outline-hidden; |
| 12 | } |
| 13 | .sbui-btn-default { |
| 14 | @apply border; |
| 15 | border-color: transparent !important; |
| 16 | } |
| 17 | .sbui-checkbox-container { |
| 18 | @apply w-auto; |
| 19 | } |
| 20 | .sbui-input-container { |
| 21 | input { |
| 22 | @apply text-sm; |
| 23 | } |
| 24 | .sbui-btn-container { |
| 25 | .sbui-btn { |
| 26 | @apply py-1; |
| 27 | } |
| 28 | } |
| 29 | } |
| 30 | .sbui-menu__item { |
| 31 | span { |
| 32 | @apply text-sm; |
| 33 | } |
| 34 | } |
| 35 | .sbui-overlay-container { |
| 36 | @apply z-10; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /* May need to just comment this out, the smooth scrolling looks weird */ |
| 41 | /* .file-explorer { */ |
| 42 | /* scroll-behavior: smooth; */ |
| 43 | /* } */ |
| 44 | |
| 45 | .storage-row:hover, |
| 46 | button[aria-haspopup='menu'][data-state='open'], |
| 47 | button[aria-haspopup='menu']:focus-visible { |
| 48 | .storage-row-menu { |
| 49 | @apply opacity-100; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | .sql-editor-container { |
| 54 | @apply p-0; |
| 55 | } |
| 56 | |
| 57 | .sbui-dropdown__trigger:focus { |
| 58 | outline: none; |
| 59 | } |