32 lines
1.1 KiB
SCSS
32 lines
1.1 KiB
SCSS
// Bring in Bulma allowing us to extend and override it.
|
|
|
|
@use "variables" as *;
|
|
// Import each part of Bulma separately so we can layer in our styles.
|
|
// Extend or override Bulam's base styles in this themes base.scss etc.
|
|
|
|
@forward "../../node_modules/bulma/sass/utilities" with (
|
|
$background: white,
|
|
);
|
|
@forward "fonts";
|
|
@forward "../../node_modules/bulma/sass/base/_index";
|
|
@forward "base";
|
|
@forward "../../node_modules/bulma/sass/elements/_index";
|
|
@forward "elements";
|
|
@forward "../../node_modules/bulma/sass/form/_index";
|
|
@forward "form";
|
|
// $navbar-breakpoint: calc($mini/2);
|
|
@forward "../../node_modules/bulma/sass/components/_index";
|
|
@forward "components";
|
|
@forward "../../node_modules/bulma/sass/grid/_index";
|
|
@forward "grid";
|
|
@forward "../../node_modules/bulma/sass/layout/_index";
|
|
@forward "layout";
|
|
|
|
// Import the themes so that all CSS variables have a value
|
|
@forward "../../node_modules/bulma/sass/themes";
|
|
|
|
// Stylesheets below will have access to all Bulma variables and mixins.
|
|
@forward "content";
|
|
@forward "paint";
|
|
|
|
// @forward '../../node_modules/bulma-extensions/bulma-timeline/dist/bulma-timeline';
|