0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-15 21:28:42 +03:00
Files
popov.link/_scss/components/_core.scss
2019-05-03 04:02:31 +04:00

44 lines
486 B
SCSS

@import 'utilities/textsizeadjust';
*,
*::after,
*::before {
@include text-size-adjust(100%);
box-sizing: border-box;
}
html {
height: 100%;
overflow-y: scroll;
}
body {
display: flex;
flex-direction: row;
min-height: 100%;
}
.container {
flex: 75%;
padding-right: 32px;
}
.sidebar {
flex: 25%;
}
@media (max-width: 684px) {
body {
flex-direction: column;
}
.container {
flex: 100%;
padding-right: 0;
}
.sidebar {
flex: 100%;
}
}