advent22/ui/src/main.scss
Jörn-Michael Miehe a1c4e408a9 🚧 ui: re-scaffolding
- move code into newly built project
2026-02-21 19:10:56 +00:00

23 lines
519 B
SCSS

@charset "utf-8";
@use "sass:map";
//==============
// bulma
//==============
// custom color scheme
@use "bulma-scheme" as scheme;
@use "bulma/sass" with (
$primary: map.get(scheme.$colors, "primary"),
$link: map.get(scheme.$colors, "link"),
$info: map.get(scheme.$colors, "info"),
$success: map.get(scheme.$colors, "success"),
$warning: map.get(scheme.$colors, "warning"),
$danger: map.get(scheme.$colors, "danger")
);
//==============
// main imports
//==============
@forward "animate.css/animate";