Skip to content

Commit 662b2b0

Browse files
committed
Fix css
1 parent 7728863 commit 662b2b0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

astro.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ export default defineConfig({
7676
},
7777
},
7878

79-
plugins: [tailwindcss()],
79+
plugins: [
80+
tailwindcss({
81+
nesting: true,
82+
}),
83+
],
8084
},
8185
markdown: {
8286
remarkPlugins: [

src/components/schedule/day.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ const dateText = format(date, "eeee - do MMMM");
610610
/*padding: 4px 8px;*/
611611
}
612612

613-
h2,
613+
h2
614614
{
615615
background: linear-gradient(#F8F7F6, #F2E2D3 );
616616
padding: 4px 8px;

0 commit comments

Comments
 (0)