Skip to content

Commit 165c756

Browse files
fix(css): replace invalid Tailwind variant chain with valid utilities for 3xl breakpoint\n\nReplaces and with separate utilities.\n\nCo-authored-by: Lambda Curry <team@lambdacurry.dev>
1 parent f28d317 commit 165c756

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/todo-app/app/globals.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@
168168
}
169169

170170
@utility section-soft {
171-
@apply from-background to-surface/40 dark:bg-background 3xl:fixed:bg-none bg-gradient-to-b;
171+
@apply from-background to-surface/40 dark:bg-background 3xl:fixed 3xl:bg-none bg-gradient-to-b;
172172
}
173173

174174
@utility theme-container {
175175
@apply font-sans;
176176
}
177177

178178
@utility container-wrapper {
179-
@apply 3xl:fixed:max-w-[calc(var(--breakpoint-2xl)+2rem)] mx-auto w-full px-2;
179+
@apply 3xl:fixed 3xl:max-w-[calc(var(--breakpoint-2xl)+2rem)] mx-auto w-full px-2;
180180
}
181181

182182
@utility container {
@@ -211,4 +211,3 @@
211211
@apply relative touch-manipulation after:absolute after:-inset-2;
212212
}
213213
}
214-

0 commit comments

Comments
 (0)