Move content from underneath header and add Roboto Flex font
This commit is contained in:
parent
b0cb487458
commit
283bcbef61
2 changed files with 10 additions and 3 deletions
|
@ -13,11 +13,14 @@ import Footer from '@components/global/Footer.astro'
|
|||
// Styles
|
||||
import '@styles/index.scss'
|
||||
import '@shoelace-style/shoelace/dist/themes/dark.css';
|
||||
import '@fontsource-variable/roboto-flex';
|
||||
---
|
||||
|
||||
<Head Title={Title} Description={Description}/>
|
||||
<Header/>
|
||||
<body>
|
||||
<slot/>
|
||||
<div class="content">
|
||||
<slot/>
|
||||
</div>
|
||||
<Footer/>
|
||||
</body>
|
|
@ -6,7 +6,7 @@
|
|||
body {
|
||||
background: black;
|
||||
color: white;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-family: 'Roboto Flex Variable', sans-serif;
|
||||
margin: auto;
|
||||
max-width: 1200px;
|
||||
|
||||
|
@ -22,5 +22,9 @@ body {
|
|||
}
|
||||
|
||||
* {cursor: var(--default-cursor)}
|
||||
a, button {cursor: var(--pointer-cursor) !important}
|
||||
a, button, a > * {cursor: var(--pointer-cursor) !important}
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-top: 72px;
|
||||
}
|
Reference in a new issue