fix: background does not cover whole page vertically

main
Jalil Arfaoui 2023-02-07 00:11:40 +01:00
parent d84c96dff4
commit 2cfc333d76
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,6 @@
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
<excludeFolder url="file://$MODULE_DIR$/public" />
<excludeFolder url="file://$MODULE_DIR$/dist" />
</content>
<orderEntry type="inheritedJdk" />

View File

@ -15,7 +15,9 @@ const { title } = Astro.props;
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body style="background-image: url('./logo_les-particules_orange.jpg'); background-position-x: center; background-repeat: no-repeat; background-position-y: top; min-height:100%">
<body style="
background: url('./logo_les-particules_orange.jpg') top no-repeat;
height:fit-content;">
<slot />
</body>
</html>