diff options
| author | Bobby <[email protected]> | 2024-09-04 00:55:20 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-09-04 00:55:20 -0400 |
| commit | b73b047452ba47141a96cf000333fc9a7211aa91 (patch) | |
| tree | c1a306d9afb5f6ecf260f56d64280847588878db /static/css | |
| parent | 763308caf9442b9b636a14ae0fb4b0659e2a0c8c (diff) | |
| download | yugen-b73b047452ba47141a96cf000333fc9a7211aa91.tar.xz yugen-b73b047452ba47141a96cf000333fc9a7211aa91.zip | |
small fixes
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/main.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index 08cbce2..d85407a 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -858,6 +858,10 @@ video { height: 100%; } +.h-64 { + height: 16rem; +} + .max-h-24 { max-height: 6rem; } @@ -935,10 +939,18 @@ video { width: max-content; } +.w-52 { + width: 13rem; +} + .min-w-32 { min-width: 8rem; } +.min-w-56 { + min-width: 14rem; +} + .max-w-4xl { max-width: 56rem; } @@ -968,6 +980,10 @@ video { max-width: max-content; } +.max-w-56 { + max-width: 14rem; +} + .flex-1 { flex: 1 1 0%; } @@ -1110,6 +1126,10 @@ video { overflow: hidden; } +.overflow-scroll { + overflow: scroll; +} + .overflow-x-auto { overflow-x: auto; } @@ -1118,6 +1138,10 @@ video { overflow-y: auto; } +.overflow-y-scroll { + overflow-y: scroll; +} + .truncate { overflow: hidden; text-overflow: ellipsis; |
