This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/src/assets/scss/_global.scss
2020-03-19 17:35:42 +01:00

46 lines
706 B
SCSS

@import '_variables';
@import '_mixins';
@import '_fonts';
// RESETS
html {
box-sizing: border-box;
font-size: $font-size-root;
-ms-overflow-style: scrollbar;
height: 100%;
-webkit-overflow-scrolling: touch;
line-height: 1.15;
color: $dark-gray;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
html *,
html *::before,
html *::after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
outline: none;
}
@at-root {
@-ms-viewport { width: device-width; }
}
var {
font-style: normal;
}
// BUTTONS
// MISC.
hr {
border: none;
border-top-style: solid;
border-top-width: 1px;
border-top-color: rgba($black, .25);
}