aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/App.vue
blob: f4d00cae9ef92f9a1afe096b0b8362d19439c88a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
	<router-view />
</template>

<style lang="scss">
@use "./scss/colors";

@import "./scss/bootstrap";

@import "~bootstrap/scss/utilities";
@import "~bootstrap/scss/utilities/api";
@import "~bootstrap/scss/containers";
@import "~bootstrap/scss/grid";
@import "~bootstrap/scss/tooltip";

@import "./scss/fonts";

#app {
	font-family: $font-primary;
	color: colors.$text;
	min-height: 100vh;
	background-color: colors.$background;
}

a {
	color: colors.$text;
	text-decoration: none;
	&:hover {
		color: colors.$primary-light;
	}
}
</style>