mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 13:38:12 +00:00
28 lines
342 B
Vue
28 lines
342 B
Vue
<template>
|
|
<div id="app_wrapper">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import './styles/global.scss';
|
|
|
|
#app {
|
|
background-color: $bgCol;
|
|
color: white;
|
|
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#app_wrapper {
|
|
padding: 0.5em;
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
#app {
|
|
font-size: calc(1vw + 0.5rem);
|
|
}
|
|
}
|
|
</style>
|
|
|