diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-24 17:05:47 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-24 17:05:47 +0700 |
| commit | bc8e76f00eaa74eb0cc51b79662a53ef34a3ed67 (patch) | |
| tree | 365095a621012eb756e956a0bbb84b602ab7844c /src/styles | |
| parent | 61c642265367b725b8d5052beca0b34c040393b2 (diff) | |
-
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/globals.css | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css index 90761309..7f33abe8 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -394,10 +394,6 @@ button { @apply !border-yellow_r-9; } -nav:has(> div.overlay) { - @apply z-0; -} - .table-specification { @apply max-h-[500px] overflow-y-auto border border-gray_r-6; } @@ -463,6 +459,29 @@ nav:has(> div.overlay) { @apply font-medium; } +.table-data thead tr { + @apply bg-gray_r-3; +} + +.table-data thead th { + @apply font-medium; +} + +.table-data thead th, +.table-data tbody td { + @apply py-3 + text-center; +} + +.table-data tbody td { + @apply text-gray_r-12/90; +} + +.table-data tbody tr { + @apply border-b + border-gray_r-6; +} + .navbar-user-dropdown-button { @apply flex-1 flex @@ -480,8 +499,9 @@ nav:has(> div.overlay) { @apply line-clamp-1; } -.navbar-user-dropdown-wrapper a { - @apply text-gray_r-12/80 hover:bg-gray_r-5 font-medium py-2 px-4; +.navbar-user-dropdown-wrapper a, +.navbar-user-dropdown-wrapper button { + @apply text-gray_r-12/80 hover:bg-gray_r-5 font-medium py-2 px-4 w-full text-left; } .navbar-user-dropdown { |
