mirror of
https://github.com/moparisthebest/mail
synced 2024-11-15 13:45:08 -05:00
38 lines
535 B
SCSS
38 lines
535 B
SCSS
|
// Reset the box-sizing
|
||
|
|
||
|
*,
|
||
|
*:before,
|
||
|
*:after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
// Body reset
|
||
|
|
||
|
html {
|
||
|
font-size: 62.5%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: $font-family-base;
|
||
|
font-size: $font-size-base;
|
||
|
line-height: $line-height-base;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
// Reset fonts for relevant elements
|
||
|
input,
|
||
|
button,
|
||
|
select,
|
||
|
textarea {
|
||
|
font-family: inherit;
|
||
|
font-size: inherit;
|
||
|
line-height: inherit;
|
||
|
}
|
||
|
|
||
|
// Basic layout
|
||
|
.column {
|
||
|
|
||
|
}
|