Swap back to original SCSS with one enhancement from 'new' test

This commit is contained in:
benjamin melançon 2025-07-14 13:46:20 -04:00
parent 7ac916395a
commit 7f6f09bc68
2 changed files with 58 additions and 58 deletions

View file

@ -1,29 +1,37 @@
// Bring in Bulma allowing us to extend and override it. // Set your brand colors
$purple: #8a4d76;
$pink: #fa7c91;
$brown: #757763;
$beige-light: #d0d1cd;
$beige-lighter: #eff0eb;
@use "variables" as *; // Override global Sass variables from the /utilities folder
// Import each part of Bulma separately so we can layer in our styles. @use "../../node_modules/bulma/sass/utilities" with (
// Extend or override Bulam's base styles in this themes base.scss etc. $family-primary: '"Nunito", sans-serif',
@forward "../../node_modules/bulma/sass/utilities/_index"; $grey-dark: $brown,
@forward "fonts"; $grey-light: $beige-light,
@forward "../../node_modules/bulma/sass/base/_index"; $primary: $purple,
@forward "base"; $link: $pink,
@forward "../../node_modules/bulma/sass/elements/_index"; $control-border-width: 2px
@forward "elements"; );
@forward "../../node_modules/bulma/sass/form/_index";
@forward "form"; // Override Sass variables from the /form folder
$navbar-breakpoint: calc($mini/2); @use "../../node_modules/bulma/sass/form" with (
@forward "../../node_modules/bulma/sass/components/_index"; $input-shadow: none
@forward "components"; );
@forward "../../node_modules/bulma/sass/grid/_index";
@forward "grid"; // Import the components you need
@forward "../../node_modules/bulma/sass/layout/_index"; @forward "../../node_modules/bulma/sass/base";
@forward "layout"; @forward "../../node_modules/bulma/sass/components/card";
@forward "../../node_modules/bulma/sass/components/modal";
@forward "../../node_modules/bulma/sass/components/navbar";
@forward "../../node_modules/bulma/sass/elements/button";
@forward "../../node_modules/bulma/sass/elements/icon";
@forward "../../node_modules/bulma/sass/elements/content";
@forward "../../node_modules/bulma/sass/elements/notification";
@forward "../../node_modules/bulma/sass/elements/progress";
@forward "../../node_modules/bulma/sass/elements/tag";
@forward "../../node_modules/bulma/sass/layout/footer";
// Import the themes so that all CSS variables have a value // Import the themes so that all CSS variables have a value
@forward "../../node_modules/bulma/sass/themes"; @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';

View file

@ -1,37 +1,29 @@
// Set your brand colors // Bring in Bulma allowing us to extend and override it.
$purple: #8a4d76;
$pink: #fa7c91;
$brown: #757763;
$beige-light: #d0d1cd;
$beige-lighter: #eff0eb;
// Override global Sass variables from the /utilities folder @use "variables" as *;
@use "../../node_modules/bulma/sass/utilities" with ( // Import each part of Bulma separately so we can layer in our styles.
$family-primary: '"Nunito", sans-serif', // Extend or override Bulam's base styles in this themes base.scss etc.
$grey-dark: $brown, @forward "../../node_modules/bulma/sass/utilities/_index";
$grey-light: $beige-light, @forward "fonts";
$primary: $purple, @forward "../../node_modules/bulma/sass/base/_index";
$link: $pink, @forward "base";
$control-border-width: 2px @forward "../../node_modules/bulma/sass/elements/_index";
); @forward "elements";
@forward "../../node_modules/bulma/sass/form/_index";
// Override Sass variables from the /form folder @forward "form";
@use "../../node_modules/bulma/sass/form" with ( $navbar-breakpoint: calc($mini/2);
$input-shadow: none @forward "../../node_modules/bulma/sass/components/_index";
); @forward "components";
@forward "../../node_modules/bulma/sass/grid/_index";
// Import the components you need @forward "grid";
@forward "../../node_modules/bulma/sass/base"; @forward "../../node_modules/bulma/sass/layout/_index";
@forward "../../node_modules/bulma/sass/components/card"; @forward "layout";
@forward "../../node_modules/bulma/sass/components/modal";
@forward "../../node_modules/bulma/sass/components/navbar";
@forward "../../node_modules/bulma/sass/elements/button";
@forward "../../node_modules/bulma/sass/elements/icon";
@forward "../../node_modules/bulma/sass/elements/content";
@forward "../../node_modules/bulma/sass/elements/notification";
@forward "../../node_modules/bulma/sass/elements/progress";
@forward "../../node_modules/bulma/sass/elements/tag";
@forward "../../node_modules/bulma/sass/layout/footer";
// Import the themes so that all CSS variables have a value // Import the themes so that all CSS variables have a value
@forward "../../node_modules/bulma/sass/themes"; @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';