cleaning up UI

This commit is contained in:
2025-12-03 06:11:06 -05:00
parent 4b823f49cf
commit d9f6ef6ead
74 changed files with 1352 additions and 255 deletions
+50
View File
@@ -675,6 +675,9 @@ video {
.items-baseline {
align-items: baseline;
}
.items-stretch {
align-items: stretch;
}
.justify-end {
justify-content: flex-end;
}
@@ -908,6 +911,9 @@ video {
.bg-amber-500\/5 {
background-color: rgb(245 158 11 / 0.05);
}
.bg-zinc-900\/80 {
background-color: rgb(24 24 27 / 0.8);
}
.object-contain {
-o-object-fit: contain;
object-fit: contain;
@@ -1185,6 +1191,10 @@ video {
--tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
outline: 2px solid transparent;
outline-offset: 2px;
}
.filter {
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
@@ -1255,6 +1265,10 @@ body {
background-color: rgb(39 39 42 / var(--tw-bg-opacity));
}
.hover\:bg-zinc-900\/60:hover {
background-color: rgb(24 24 27 / 0.6);
}
.hover\:text-amber-200:hover {
--tw-text-opacity: 1;
color: rgb(253 230 138 / var(--tw-text-opacity));
@@ -1297,10 +1311,18 @@ body {
@media (min-width: 640px) {
.sm\:w-auto {
width: auto;
}
.sm\:flex-row {
flex-direction: row;
}
.sm\:flex-wrap {
flex-wrap: wrap;
}
.sm\:items-center {
align-items: center;
}
@@ -1316,10 +1338,18 @@ body {
margin-top: 0px;
}
.md\:mt-5 {
margin-top: 1.25rem;
}
.md\:inline {
display: inline;
}
.md\:inline-flex {
display: inline-flex;
}
.md\:grid {
display: grid;
}
@@ -1328,6 +1358,22 @@ body {
display: none;
}
.md\:w-auto {
width: auto;
}
.md\:w-full {
width: 100%;
}
.md\:flex-1 {
flex: 1 1 0%;
}
.md\:flex-none {
flex: none;
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@@ -1356,6 +1402,10 @@ body {
align-items: center;
}
.md\:justify-end {
justify-content: flex-end;
}
.md\:justify-between {
justify-content: space-between;
}