mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 18:53:23 +00:00
20 lines
384 B
SCSS
Executable File
20 lines
384 B
SCSS
Executable File
// Import variables
|
|
@import "variables/variables";
|
|
@import "base/fonts";
|
|
|
|
:global {
|
|
// Expose libs styles
|
|
@import "libs/bootstrap/bootstrap";
|
|
@import "libs/fontawesome/fontawesome";
|
|
|
|
// Expose base styles
|
|
@import "base/helpers";
|
|
@import "base/animations";
|
|
|
|
// Set the global font-size in order
|
|
// to be able to have `1rem = 10px`.
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
}
|