diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 14:28:17 +0300 |
commit | 3647ff37c565c77ebd1e68fce1552201c35b5cb3 (patch) | |
tree | af295c51a91eb8a491a951d00459138daaabfeda /_scss/components/_core.scss | |
parent | bdbcbedc357627a583744b88ba35aeeddc6e69d0 (diff) | |
download | popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.tar.xz popov.link-3647ff37c565c77ebd1e68fce1552201c35b5cb3.zip |
Complete redesign of site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/components/_core.scss')
-rw-r--r-- | _scss/components/_core.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_scss/components/_core.scss b/_scss/components/_core.scss new file mode 100644 index 0000000..ae17c9e --- /dev/null +++ b/_scss/components/_core.scss @@ -0,0 +1,18 @@ +@import 'utilities/boxsizing'; +@import 'utilities/textsizeadjust'; + +*, +*::after, +*::before { + @include box-sizing(border-box); + @include text-size-adjust(100%); +} + +html { + overflow-y: scroll; +} + +body { + padding-bottom: 20px; + padding-top: 20px; +} |