diff options
| author | Bobby <[email protected]> | 2024-09-01 05:37:38 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-09-01 05:37:38 -0400 |
| commit | 1afd44cda6331a3fbd2a2a83cc1a3850452f8e14 (patch) | |
| tree | 2382e01fbdbac9d21bc02d3a0279616ab78205b4 /static/css/main.css | |
| parent | 6346d1913bcd54f4402b7ce640fd10c752084c83 (diff) | |
| download | yugen-1afd44cda6331a3fbd2a2a83cc1a3850452f8e14.tar.xz yugen-1afd44cda6331a3fbd2a2a83cc1a3850452f8e14.zip | |
fix list buttons. anime detail page
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index d40ada8..c6ee6a9 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -705,6 +705,11 @@ video { margin-bottom: 2rem; } +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; +} + .mb-2 { margin-bottom: 0.5rem; } @@ -745,6 +750,14 @@ video { margin-top: 2rem; } +.mt-\[0\.35rem\] { + margin-top: 0.35rem; +} + +.ml-1 { + margin-left: 0.25rem; +} + .block { display: block; } @@ -789,6 +802,11 @@ video { height: 1.5rem; } +.size-5 { + width: 1.25rem; + height: 1.25rem; +} + .h-24 { height: 6rem; } @@ -829,6 +847,10 @@ video { height: 100%; } +.h-16 { + height: 4rem; +} + .max-h-24 { max-height: 6rem; } @@ -894,6 +916,14 @@ video { width: max-content; } +.w-48 { + width: 12rem; +} + +.w-12 { + width: 3rem; +} + .min-w-32 { min-width: 8rem; } @@ -931,6 +961,23 @@ video { max-width: calc(100% - 10rem); } +.max-w-fit { + max-width: -moz-fit-content; + max-width: fit-content; +} + +.max-w-\[calc\(100\%-4rem\)\] { + max-width: calc(100% - 4rem); +} + +.max-w-0\.5 { + max-width: 0.125rem; +} + +.flex-1 { + flex: 1 1 0%; +} + .origin-left { transform-origin: left; } @@ -1031,6 +1078,10 @@ video { justify-content: space-around; } +.justify-evenly { + justify-content: space-evenly; +} + .gap-1 { gap: 0.25rem; } @@ -1047,6 +1098,10 @@ video { gap: 2rem; } +.gap-11 { + gap: 2.75rem; +} + .space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); @@ -1514,6 +1569,10 @@ video { text-align: center; } +.text-right { + text-align: right; +} + .text-2xl { font-size: 1.5rem; line-height: 2rem; @@ -2246,6 +2305,14 @@ main { flex-wrap: wrap; } + .sm\:place-content-center { + place-content: center; + } + + .sm\:items-center { + align-items: center; + } + .sm\:gap-2 { gap: 0.5rem; } @@ -2341,6 +2408,10 @@ main { flex-wrap: nowrap; } + .lg\:items-start { + align-items: flex-start; + } + .lg\:items-center { align-items: center; } |
