20 lines
404 B
CSS
20 lines
404 B
CSS
/* src/main.css */
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#app,
|
|
.v-application {
|
|
background-image: url('/carbon.jpg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
position: relative;
|
|
z-index: 0;
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
} |