diff options
| author | Bobby <[email protected]> | 2024-08-30 01:49:00 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-08-30 01:49:00 -0400 |
| commit | c21f3b68cead4a13abf3c8e6a455a20bf06ecfb4 (patch) | |
| tree | eebc344c58bcde975969dc3c28ff42ed07956fe4 /static | |
| parent | dcb3df5b0bbbd012ab59e1ba77a56e2ed2b0b1e1 (diff) | |
| download | yugen-c21f3b68cead4a13abf3c8e6a455a20bf06ecfb4.tar.xz yugen-c21f3b68cead4a13abf3c8e6a455a20bf06ecfb4.zip | |
css fixes
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/main.css | 64 |
1 files changed, 46 insertions, 18 deletions
diff --git a/static/css/main.css b/static/css/main.css index e1321c0..df3ef7f 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -878,6 +878,15 @@ video { max-width: max-content; } +.max-w-fit { + max-width: -moz-fit-content; + max-width: fit-content; +} + +.max-w-full { + max-width: 100%; +} + .origin-left { transform-origin: left; } @@ -930,10 +939,6 @@ video { user-select: none; } -.resize { - resize: both; -} - .list-inside { list-style-position: inside; } @@ -1016,6 +1021,28 @@ video { overflow-y: auto; } +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-ellipsis { + text-overflow: ellipsis; +} + +.whitespace-nowrap { + white-space: nowrap; +} + +.text-wrap { + text-wrap: wrap; +} + +.text-nowrap { + text-wrap: nowrap; +} + .break-words { overflow-wrap: break-word; } @@ -1127,11 +1154,6 @@ video { background-color: rgb(14 116 144 / var(--tw-bg-opacity)); } -.bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgb(55 65 81 / var(--tw-bg-opacity)); -} - .bg-green-100 { --tw-bg-opacity: 1; background-color: rgb(220 252 231 / var(--tw-bg-opacity)); @@ -1344,10 +1366,6 @@ video { --tw-bg-opacity: 0.4; } -.bg-opacity-30 { - --tw-bg-opacity: 0.3; -} - .bg-cover { background-size: cover; } @@ -1597,6 +1615,11 @@ video { color: rgb(21 128 61 / var(--tw-text-opacity)); } +.text-green-900 { + --tw-text-opacity: 1; + color: rgb(20 83 45 / var(--tw-text-opacity)); +} + .text-indigo-300 { --tw-text-opacity: 1; color: rgb(165 180 252 / var(--tw-text-opacity)); @@ -1781,6 +1804,11 @@ video { color: rgb(161 98 7 / var(--tw-text-opacity)); } +.text-green-800 { + --tw-text-opacity: 1; + color: rgb(22 101 52 / var(--tw-text-opacity)); +} + .opacity-25 { opacity: 0.25; } @@ -2232,15 +2260,15 @@ main { --tw-bg-opacity: 0.2; } - .lg\:px-8 { - padding-left: 2rem; - padding-right: 2rem; - } - .lg\:px-0 { padding-left: 0px; padding-right: 0px; } + + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } } @media (min-width: 1280px) { |
