fix rm file 2 form other branch
All checks were successful
Build Docker Image / run (pull_request) Successful in 46s

This commit is contained in:
Clement 2024-04-21 15:22:34 +02:00
parent d876439b50
commit de3ab9a529
2 changed files with 30 additions and 6 deletions

View File

@ -20,3 +20,32 @@ const { title } = Astro.props;
<slot /> <slot />
</body> </body>
</html> </html>
<style is:global>
:root {
--accent: 136, 58, 234;
--accent-light: 224, 204, 250;
--accent-dark: 49, 10, 101;
--accent-gradient: linear-gradient(
45deg,
rgb(var(--accent)),
rgb(var(--accent-light)) 30%,
white 60%
);
}
html {
font-family: system-ui, sans-serif;
background: #13151a;
background-size: 224px;
}
code {
font-family:
Menlo,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace;
}
</style>

View File

@ -1,5 +0,0 @@
export default class AstroUtils {
public static async wrap<T = void>(fn: () => T | Promise<T>) {
return await fn()
}
}