Skip to content

Commit e62ceb9

Browse files
authored
fix: replace .lg:pb-18 with a valid classname (remix-run#77)
the classname `.lg:pb-18` doesn't exist in tailwind's default spacing scale. hence why it was being ordered before `.relative` this replaces it with `.lg:pb-20`
1 parent ce32081 commit e62ceb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/routes/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Index() {
1717
/>
1818
<div className="absolute inset-0 bg-[color:rgba(255,56,56,0.5)] mix-blend-multiply" />
1919
</div>
20-
<div className="lg:pb-18 relative px-4 pt-16 pb-8 sm:px-6 sm:pt-24 sm:pb-14 lg:px-8 lg:pt-32">
20+
<div className="relative px-4 pt-16 pb-8 sm:px-6 sm:pt-24 sm:pb-14 lg:px-8 lg:pb-20 lg:pt-32">
2121
<h1 className="text-center text-6xl font-extrabold tracking-tight sm:text-8xl lg:text-9xl">
2222
<span className="block uppercase text-red-500 drop-shadow-md">
2323
Grunge Stack

0 commit comments

Comments
 (0)