We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b2c40c commit 5d160a7Copy full SHA for 5d160a7
src/app/layout.tsx
@@ -25,7 +25,7 @@ export default function RootLayout({
25
}>) {
26
return (
27
<html lang="ko-KR">
28
- <body className="relative flex flex-col min-h-screen">
+ <body className="relative flex flex-col min-h-full-screen">
29
<Provider>
30
<Header />
31
<ClientInitHook />
src/shared/styles/_utilities.css
@@ -127,4 +127,14 @@
127
.swiper-pagination-bullet-active {
128
background: var(--color-secondary) !important;
129
}
130
+
131
+ .min-h-full-screen {
132
+ min-height: 100vh;
133
+ min-height: 100svh;
134
+ }
135
136
+ .h-full-screen {
137
+ height: 100vh;
138
+ height: 100svh;
139
140
0 commit comments