Skip to content

Commit

Permalink
build(deps-dev): bump sass from 1.79.5 to 1.80.1 (#280)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump sass from 1.79.5 to 1.80.1

Bumps [sass](https://github.com/sass/dart-sass) from 1.79.5 to 1.80.1.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.79.5...1.80.1)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* refactor: migrated @import to @use

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maximilian Franzke <[email protected]>
Co-authored-by: Maximilian Franzke <[email protected]>
  • Loading branch information
3 people authored Oct 18, 2024
1 parent bc15d5c commit 0eb666a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"sass": "^1.80.1",
"vue": "^3.2.31"
},
"private": true
Expand Down
24 changes: 13 additions & 11 deletions scss/global.scss
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
$icons-path: "../icons/";
$images-path: "../images/";
$fonts-path: "../fonts/";
@use "@db-ui/core/sources/css/enterprise/db-ui-core" with (
$icons-path: "../icons/",
$images-path: "../images/",
$fonts-path: "../fonts/"
);

@import "@db-ui/core/sources/css/enterprise/db-ui-core";

@import "@db-ui/core/sources/_patterns/00-base/colors/enterprise/colors.variables";
@use "@db-ui/core/sources/_patterns/00-base/colors/enterprise/colors.variables";

$ora-100: #fff4d8;
$blu-100: #e0effb;

@import "./helpers/helperclasses";
@import "./modules/navigation";
@use "helpers/helperclasses";
@use "modules/navigation";

@import "./elements/buttons";
@import "./elements/icons";
@use "elements/buttons";
@use "elements/icons";

html {
background: #fff;
//background: var(--db-03-01);
font-family: "DB Sans", "Helvetica", "Arial", sans-serif;
transition: color 250ms, background-color 250ms;
transition:
color 250ms,
background-color 250ms;
font-size: 16px;
}
body {
Expand Down

0 comments on commit 0eb666a

Please sign in to comment.