1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-22 09:24:26 -04:00

split up SCSS files

This commit is contained in:
2019-10-08 09:28:53 -04:00
parent b93a975f27
commit 6aa688c62e
15 changed files with 719 additions and 690 deletions

View File

@@ -0,0 +1,17 @@
@charset "UTF-8";
// Responsive Awesomeness
@media screen and (max-width: $responsive-width) {
body {
// Safari iOS menu bar reappers below 44px:
// https://www.eventbrite.com/engineering/mobile-safari-why/
padding-bottom: 50px !important;
// Allows content to fill the viewport and go beyond the bottom
height: 100%;
// Allows you to scroll below the viewport; default value is visible
overflow-y: scroll;
}
@import 'home';
@import 'notes';
}