We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b52162 commit a7da195Copy full SHA for a7da195
1 file changed
src/layouts/Main.astro
@@ -20,7 +20,10 @@ const {
20
<BaseHead title={title} description={description} />
21
</head>
22
<body>
23
- <div class={"main-container " + (title === "Home" ? "gradient-1" : "gradient-2")}>
+ <div
24
+ class={"main-container " +
25
+ (title === "Home" ? "gradient-1" : "gradient-2")}
26
+ >
27
{header && <Header />}
28
<main>
29
<slot />
0 commit comments