20 lines
384 B
SCSS
Raw Normal View History

2016-08-24 15:09:42 +02:00
// Import variables
@import "variables/variables";
2017-07-07 18:19:12 +02:00
@import "base/fonts";
2016-08-24 15:09:42 +02:00
2016-09-30 18:25:04 +02:00
:global {
2016-08-24 15:09:42 +02:00
// Expose libs styles
2016-09-09 11:21:54 +02:00
@import "libs/bootstrap/bootstrap";
2017-07-07 18:19:12 +02:00
@import "libs/fontawesome/fontawesome";
2016-08-24 15:09:42 +02:00
// Expose base styles
@import "base/helpers";
2016-09-30 18:25:04 +02:00
@import "base/animations";
2016-08-24 15:09:42 +02:00
// Set the global font-size in order
// to be able to have `1rem = 10px`.
2016-09-09 11:21:54 +02:00
html {
font-size: 62.5%;
}
}