Skip to content

Commit 0eb666a

Browse files
build(deps-dev): bump sass from 1.79.5 to 1.80.1 (#280)
* 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]>
1 parent bc15d5c commit 0eb666a

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"nodemon": "^3.1.7",
2525
"npm-run-all": "^4.1.5",
2626
"prettier": "^3.3.3",
27-
"sass": "^1.79.5",
27+
"sass": "^1.80.1",
2828
"vue": "^3.2.31"
2929
},
3030
"private": true

scss/global.scss

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
1-
$icons-path: "../icons/";
2-
$images-path: "../images/";
3-
$fonts-path: "../fonts/";
1+
@use "@db-ui/core/sources/css/enterprise/db-ui-core" with (
2+
$icons-path: "../icons/",
3+
$images-path: "../images/",
4+
$fonts-path: "../fonts/"
5+
);
46

5-
@import "@db-ui/core/sources/css/enterprise/db-ui-core";
6-
7-
@import "@db-ui/core/sources/_patterns/00-base/colors/enterprise/colors.variables";
7+
@use "@db-ui/core/sources/_patterns/00-base/colors/enterprise/colors.variables";
88

99
$ora-100: #fff4d8;
1010
$blu-100: #e0effb;
1111

12-
@import "./helpers/helperclasses";
13-
@import "./modules/navigation";
12+
@use "helpers/helperclasses";
13+
@use "modules/navigation";
1414

15-
@import "./elements/buttons";
16-
@import "./elements/icons";
15+
@use "elements/buttons";
16+
@use "elements/icons";
1717

1818
html {
1919
background: #fff;
2020
//background: var(--db-03-01);
2121
font-family: "DB Sans", "Helvetica", "Arial", sans-serif;
22-
transition: color 250ms, background-color 250ms;
22+
transition:
23+
color 250ms,
24+
background-color 250ms;
2325
font-size: 16px;
2426
}
2527
body {

0 commit comments

Comments
 (0)