layout/default.vue
_layout.scssを読み込む。他のlayoutでも使えるように
reset.css 、よく ress.css を使用している。
height: 100vh;をあんまりしたくないので上から順番に height: 100%
code:_layout.scss
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
@include noto($size: 16px, $color: $theme-color, $weight: $font-regular);
line-height: 1.5;
word-spacing: 1px;
font-feature-settings: 'pkna';
}
*,
*:before,
*:after {
box-sizing: border-box;
margin: 0;
}
a,
a:link,
a:visited {
outline: none;
text-decoration: none;
}
button {
outline: none;
}