Skip to content

Commit 45b8cb0

Browse files
authored
Merge branch 'main' into docs-added-warning-for-sass-usage
2 parents 5e6ef6c + dbf4cb3 commit 45b8cb0

File tree

9 files changed

+22
-17
lines changed

9 files changed

+22
-17
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
@@ -94,7 +94,7 @@
9494
"postcss-cli": "^11.0.0",
9595
"postcss-focus": "^7.0.0",
9696
"postcss-list-style-safari-fix": "^1.0.0",
97-
"prettier": "^3.3.3",
97+
"prettier": "^3.4.1",
9898
"rimraf": "^6.0.1",
9999
"sass": "^1.81.0",
100100
"start-server-and-test": "^2.0.8",

source/_patterns/00-base/icons/enterprise/_icons.variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $icon-font-families: (
1919
// "db_transportation-solid": (
2020
// 40
2121
// )
22-
// )
22+
// )
2323
) !default;
2424
$icon-glyphs-enterprise: (
2525
// "attachment": "\e1245",
@@ -80,6 +80,6 @@ $icon-glyphs-enterprise: (
8080
// "undo": "\e922",
8181
// // TODO: would need to get replaced by non-out-of-range unicodes
8282
// "upload-cloud": "\e923",
83-
// "watch": "\1f552"
83+
// "watch": "\1f552"
8484
);
8585
$icon-glyphs: map.merge($icon-glyphs-enterprise, $icon-glyphs-personenverkehr);

source/_patterns/00-base/type/_fonts.variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ $font-families: (
5555
"font-style": normal,
5656
// TODO: Identify the correct name on local environments; most likely this isn't installed and/or possible to get referenced at the moment
5757
// "font-local-name": "DB Screen Sans Medium",
58-
// "font-local-name-short": "DB Sans Medium"
58+
// "font-local-name-short": "DB Sans Medium"
5959
),
6060
"DB Screen Sans Semibold": (
6161
"font-family": "DB Screen Sans",
@@ -64,7 +64,7 @@ $font-families: (
6464
"font-style": normal,
6565
// TODO: Identify the correct name on local environments; most likely this isn't installed and/or possible to get referenced at the moment
6666
// "font-local-name": "DB Screen Sans Semibold",
67-
// "font-local-name-short": "DB Sans Semibold"
67+
// "font-local-name-short": "DB Sans Semibold"
6868
),
6969
"DB Screen Sans Bold": (
7070
"font-family": "DB Screen Sans",

source/_patterns/02-components/accordion/accordion.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
// Negating the padding left for moving the element into that direction with the same measures
1717
transform: translateX(calc(var(--db-accordion---paddingLeft) * -1));
1818
width: calc(
19-
100% + var(--db-accordion---paddingLeft) + #{$accordion---paddingRight}
19+
100% + var(--db-accordion---paddingLeft) +
20+
#{$accordion---paddingRight}
2021
);
2122

2223
& {

source/_patterns/02-components/tab-bar/_tab-bar.variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ $tabBar-tab-hover-backgroundColor: #{$db-color-cool-gray-700} + "1F" !default;
1010
$tabBar-tab-pressed-backgroundColor: #{$db-color-cool-gray-700} + "3D" !default;
1111
$tabBar-tab-active-border: #{to-rem(
1212
$pxValue: 1
13-
)} solid $db-color-cool-gray-500 !default;
13+
)}
14+
solid $db-color-cool-gray-500 !default;
1415

1516
$tabBar-tabpanel--borderTop: to-rem(
1617
$pxValue: 1

source/_patterns/03-areas/00-header/_header.variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ $header---backgroundColor: #fdfdfd !default; // TODO: This would need to get rep
99

1010
$header---borderBottom: #{to-rem(
1111
$pxValue: 1
12-
)} solid $db-color-warm-gray-400 !default;
12+
)}
13+
solid $db-color-warm-gray-400 !default;
1314

1415
$header---marginBottom: to-rem(
1516
$pxValue: 16

source/_patterns/03-areas/02-grid/_grid.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747

4848
&:not(:last-child) {
4949
margin-bottom: calc(
50-
#{to-rem($pxValue: 24)} - #{$column-gap-max-width-smaller-padding}
50+
#{to-rem($pxValue: 24)} -
51+
#{$column-gap-max-width-smaller-padding}
5152
);
5253
}
5354
}

source/_patterns/03-areas/03-footer/_footer.variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
$footer---borderTop: #{to-rem(
44
$pxValue: 6
5-
)} solid $db-color-cool-gray-200 !default;
5+
)}
6+
solid $db-color-cool-gray-200 !default;
67

78
$footer---boxShadow: $box-shadow-01, $box-shadow-02 !default;
89

0 commit comments

Comments
 (0)