disambiguate global styles

feat/vaults
Tomáš Mládek 2021-07-06 00:19:25 +02:00
parent 703e7b8b7a
commit 826c833c91
1 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
<template>
<div id="root" :class="{ 'sl-theme-dark': prefersDark }">
<header>
<header id="header">
<Header />
</header>
<main>
<main id="main">
<router-view />
</main>
<footer>
<footer id="footer">
<Jobs />
</footer>
</div>
@ -82,17 +82,17 @@ body,
monospace;
}
main {
#main {
display: flex;
flex-grow: 1;
}
main,
header {
#main,
#header {
margin: 0 2rem;
}
footer {
#footer {
position: fixed;
bottom: 0;
@ -104,7 +104,7 @@ footer {
background: var(--background);
}
footer > * {
#footer > * {
margin: 1rem;
}