@@ -29,7 +33,7 @@ export function openModal(id) {
`,
)
diff --git a/style/tailwind.css b/style/tailwind.css
index 0307292..45dd428 100644
--- a/style/tailwind.css
+++ b/style/tailwind.css
@@ -63,7 +63,6 @@
--color-slate-700: oklch(37.2% 0.044 257.287);
--color-slate-800: oklch(27.9% 0.041 260.031);
--color-slate-900: oklch(20.8% 0.042 265.755);
- --color-gray-50: oklch(98.5% 0.002 247.839);
--color-gray-100: oklch(96.7% 0.003 264.542);
--color-gray-200: oklch(92.8% 0.006 264.531);
--color-gray-300: oklch(87.2% 0.01 258.338);
@@ -76,7 +75,6 @@
--color-black: #000;
--color-white: #fff;
--spacing: 0.25rem;
- --container-xl: 36rem;
--container-3xl: 48rem;
--container-6xl: 72rem;
--text-xs: 0.75rem;
@@ -95,8 +93,6 @@
--text-3xl--line-height: calc(2.25 / 1.875);
--text-4xl: 2.25rem;
--text-4xl--line-height: calc(2.5 / 2.25);
- --text-5xl: 3rem;
- --text-5xl--line-height: 1;
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
@@ -325,6 +321,9 @@
.z-50 {
z-index: 50;
}
+ .z-\[60\] {
+ z-index: 60;
+ }
.container {
width: 100%;
@media (width >= 40rem) {
@@ -343,6 +342,9 @@
max-width: 96rem;
}
}
+ .mx-auto {
+ margin-inline: auto;
+ }
.mt-4 {
margin-top: calc(var(--spacing) * 4);
}
@@ -395,9 +397,6 @@
width: calc(var(--spacing) * 16);
height: calc(var(--spacing) * 16);
}
- .\!h-10 {
- height: calc(var(--spacing) * 10) !important;
- }
.h-2 {
height: calc(var(--spacing) * 2);
}
@@ -476,9 +475,6 @@
.flex-1 {
flex: 1;
}
- .flex-shrink-0 {
- flex-shrink: 0;
- }
.shrink-0 {
flex-shrink: 0;
}
@@ -653,10 +649,10 @@
background-color: color-mix(in oklab, var(--color-amber-400) 10%, transparent);
}
}
- .bg-black\/40 {
- background-color: color-mix(in srgb, #000 40%, transparent);
+ .bg-black\/60 {
+ background-color: color-mix(in srgb, #000 60%, transparent);
@supports (color: color-mix(in lab, red, red)) {
- background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
+ background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
}
}
.bg-blue-100 {
@@ -899,7 +895,7 @@
.text-nowrap {
text-wrap: nowrap;
}
- .break-words {
+ .wrap-break-word {
overflow-wrap: break-word;
}
.break-keep {
@@ -1269,11 +1265,6 @@
max-height: none;
}
}
- .md\:min-h-\[60vh\] {
- @media (width >= 48rem) {
- min-height: 60vh;
- }
- }
.md\:w-2\/5 {
@media (width >= 48rem) {
width: calc(2/5 * 100%);