💄 Rebuild CSS

This commit is contained in:
dependabot[bot]
2026-02-18 05:04:07 +00:00
committed by github-actions[bot]
parent 8a2f58be77
commit 774e2e05c1
+43 -35
View File
@@ -251,9 +251,6 @@
.static { .static {
position: static; position: static;
} }
.sticky {
position: sticky;
}
.inset-0 { .inset-0 {
inset: calc(var(--spacing) * 0); inset: calc(var(--spacing) * 0);
} }
@@ -284,6 +281,9 @@
.top-20 { .top-20 {
top: calc(var(--spacing) * 20); top: calc(var(--spacing) * 20);
} }
.top-full {
top: 100%;
}
.right-0 { .right-0 {
right: calc(var(--spacing) * 0); right: calc(var(--spacing) * 0);
} }
@@ -1234,6 +1234,9 @@
.w-full { .w-full {
width: 100%; width: 100%;
} }
.w-max {
width: max-content;
}
.w-screen { .w-screen {
width: 100vw; width: 100vw;
} }
@@ -1246,6 +1249,9 @@
.max-w-20 { .max-w-20 {
max-width: calc(var(--spacing) * 20); max-width: calc(var(--spacing) * 20);
} }
.max-w-48 {
max-width: calc(var(--spacing) * 48);
}
.max-w-\[200px\] { .max-w-\[200px\] {
max-width: 200px; max-width: 200px;
} }
@@ -1738,6 +1744,9 @@
background-color: color-mix(in oklab, rgba(var(--color-neutral-500), 1) 50%, transparent); background-color: color-mix(in oklab, rgba(var(--color-neutral-500), 1) 50%, transparent);
} }
} }
.bg-neutral-900 {
background-color: rgba(var(--color-neutral-900), 1);
}
.bg-neutral\/25 { .bg-neutral\/25 {
background-color: color-mix(in srgb, rgba(rgba(var(--color-neutral), 1), 1) 25%, transparent); background-color: color-mix(in srgb, rgba(rgba(var(--color-neutral), 1), 1) 25%, transparent);
@supports (color: color-mix(in lab, red, red)) { @supports (color: color-mix(in lab, red, red)) {
@@ -2169,9 +2178,6 @@
.text-white { .text-white {
color: #fff; color: #fff;
} }
.capitalize {
text-transform: capitalize;
}
.lowercase { .lowercase {
text-transform: lowercase; text-transform: lowercase;
} }
@@ -2187,10 +2193,6 @@
.not-italic { .not-italic {
font-style: normal; font-style: normal;
} }
.ordinal {
--tw-ordinal: ordinal;
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
}
.\!no-underline { .\!no-underline {
text-decoration-line: none !important; text-decoration-line: none !important;
} }
@@ -2257,6 +2259,10 @@
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
} }
.shadow-md {
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-sm { .shadow-sm {
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -2430,6 +2436,23 @@
rotate: 0deg; rotate: 0deg;
} }
} }
.group-focus-within\:visible {
&:is(:where(.group):focus-within *) {
visibility: visible;
}
}
.group-focus-within\:opacity-100 {
&:is(:where(.group):focus-within *) {
opacity: 100%;
}
}
.group-hover\:visible {
&:is(:where(.group):hover *) {
@media (hover: hover) {
visibility: visible;
}
}
}
.group-hover\:scale-110 { .group-hover\:scale-110 {
&:is(:where(.group):hover *) { &:is(:where(.group):hover *) {
@media (hover: hover) { @media (hover: hover) {
@@ -3276,6 +3299,11 @@
} }
} }
} }
.dark\:bg-neutral-100 {
&:is(.dark *) {
background-color: rgba(var(--color-neutral-100), 1);
}
}
.dark\:bg-neutral-400 { .dark\:bg-neutral-400 {
&:is(.dark *) { &:is(.dark *) {
background-color: rgba(var(--color-neutral-400), 1); background-color: rgba(var(--color-neutral-400), 1);
@@ -3433,6 +3461,11 @@
color: rgba(var(--color-neutral-800), 1); color: rgba(var(--color-neutral-800), 1);
} }
} }
.dark\:text-neutral-900 {
&:is(.dark *) {
color: rgba(var(--color-neutral-900), 1);
}
}
.dark\:text-primary-200 { .dark\:text-primary-200 {
&:is(.dark *) { &:is(.dark *) {
color: rgba(var(--color-primary-200), 1); color: rgba(var(--color-primary-200), 1);
@@ -5017,26 +5050,6 @@ body:has(#mobile-menu-toggle:checked) {
syntax: "*"; syntax: "*";
inherits: false; inherits: false;
} }
@property --tw-ordinal {
syntax: "*";
inherits: false;
}
@property --tw-slashed-zero {
syntax: "*";
inherits: false;
}
@property --tw-numeric-figure {
syntax: "*";
inherits: false;
}
@property --tw-numeric-spacing {
syntax: "*";
inherits: false;
}
@property --tw-numeric-fraction {
syntax: "*";
inherits: false;
}
@property --tw-shadow { @property --tw-shadow {
syntax: "*"; syntax: "*";
inherits: false; inherits: false;
@@ -5246,11 +5259,6 @@ body:has(#mobile-menu-toggle:checked) {
--tw-leading: initial; --tw-leading: initial;
--tw-font-weight: initial; --tw-font-weight: initial;
--tw-tracking: initial; --tw-tracking: initial;
--tw-ordinal: initial;
--tw-slashed-zero: initial;
--tw-numeric-figure: initial;
--tw-numeric-spacing: initial;
--tw-numeric-fraction: initial;
--tw-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000;
--tw-shadow-color: initial; --tw-shadow-color: initial;
--tw-shadow-alpha: 100%; --tw-shadow-alpha: 100%;