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$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" /> <excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" /> <excludeFolder url="file://$MODULE_DIR$/tmp" />
<excludeFolder url="file://$MODULE_DIR$/public" />
<excludeFolder url="file://$MODULE_DIR$/dist" /> <excludeFolder url="file://$MODULE_DIR$/dist" />
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />

View File

@ -15,7 +15,9 @@ const { title } = Astro.props;
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>{title}</title> <title>{title}</title>
</head> </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 /> <slot />
</body> </body>
</html> </html>