added header, footer, eslint/prettier, and typedoc

This commit is contained in:
2024-09-13 17:06:10 +09:00
parent 845418da60
commit a7dc8d6c8f
56 changed files with 16207 additions and 11147 deletions

View File

@@ -1,13 +1,29 @@
@import "~/assets/styles/color-pallet.css";
@font-face {
font-family: "Noto Sans JP";
src: url('../fonts/NotoSansJP-VariableFont_wght.ttf') format('truetype');
font-family: "Noto Sans JP";
src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
* {
font-family: "Noto Sans JP";
}
#App {
display: grid;
font-family: "Noto Sans JP";
display: grid;
}
.page-enter-active,
.page-leave-active {
transition: all ease-in-out 0.6s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
transform: translateY(100%);
}
body {
margin: 0;
margin: 0;
}