36 lines
528 B
CSS
36 lines
528 B
CSS
@import "~/assets/styles/color-pallet.css";
|
|
@import "~/assets/styles/markdown.css";
|
|
|
|
@font-face {
|
|
font-family: "Noto Sans JP";
|
|
src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
|
|
}
|
|
|
|
* {
|
|
font-family: "Noto Sans JP";
|
|
}
|
|
|
|
#App {
|
|
display: grid;
|
|
}
|
|
|
|
.page-enter-active,
|
|
.page-leave-active {
|
|
transition: all ease-in-out 0.4s;
|
|
}
|
|
|
|
.page-enter-from,
|
|
.page-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
scrollbar-width: none;
|
|
scroll-behavior: smooth;
|
|
}
|