@db-ux/core-foundations 4.4.2 → 4.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/build/styles/_screen-sizes.scss +2 -4
- package/build/styles/_variables.scss +10 -10
- package/build/styles/absolute.css +0 -23
- package/build/styles/colors/_variables.additional-palette.scss +2 -2
- package/build/styles/colors/_variables.palette.scss +2 -2
- package/build/styles/defaults/default-required.scss +1 -1
- package/build/styles/density/classes/all.css +0 -22
- package/build/styles/density/classes/expressive.css +0 -22
- package/build/styles/density/classes/functional.css +0 -22
- package/build/styles/density/classes/regular.css +0 -22
- package/build/styles/fonts/_font-sizes.scss +4 -6
- package/build/styles/fonts/_variables.scss +2 -2
- package/build/styles/fonts/classes/all.css +0 -19
- package/build/styles/fonts/classes/body/2xl.css +0 -19
- package/build/styles/fonts/classes/body/2xs.css +0 -19
- package/build/styles/fonts/classes/body/3xl.css +0 -19
- package/build/styles/fonts/classes/body/3xs.css +0 -19
- package/build/styles/fonts/classes/body/all.css +0 -19
- package/build/styles/fonts/classes/body/lg.css +0 -19
- package/build/styles/fonts/classes/body/md.css +0 -19
- package/build/styles/fonts/classes/body/sm.css +0 -19
- package/build/styles/fonts/classes/body/xl.css +0 -19
- package/build/styles/fonts/classes/body/xs.css +0 -19
- package/build/styles/fonts/classes/headline/2xl.css +0 -19
- package/build/styles/fonts/classes/headline/2xs.css +0 -19
- package/build/styles/fonts/classes/headline/3xl.css +0 -19
- package/build/styles/fonts/classes/headline/3xs.css +0 -19
- package/build/styles/fonts/classes/headline/all.css +0 -19
- package/build/styles/fonts/classes/headline/lg.css +0 -19
- package/build/styles/fonts/classes/headline/md.css +0 -19
- package/build/styles/fonts/classes/headline/sm.css +0 -19
- package/build/styles/fonts/classes/headline/xl.css +0 -19
- package/build/styles/fonts/classes/headline/xs.css +0 -19
- package/build/styles/helpers/classes/all.css +0 -10
- package/build/styles/helpers/classes/divider.css +0 -10
- package/build/styles/helpers/classes/focus.css +0 -10
- package/build/styles/index.css +0 -23
- package/build/styles/relative.css +0 -23
- package/build/styles/rollup.css +0 -23
- package/build/styles/webpack.css +0 -23
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -81,10 +81,8 @@ $db-breakpoint-xl: helpers.px-to-em($db-screen-size-xl);
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
87
|
-
*/
|
|
84
|
+
// @mixin screen-min-max
|
|
85
|
+
// @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
88
86
|
@mixin screen-min-max($data) {
|
|
89
87
|
$min: "";
|
|
90
88
|
$max: "";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// Use sizing values for fixed heights/widths e.g. the db-button has always a fixed height
|
|
2
2
|
$db-sizing-3xs: var(--db-sizing-3xs);
|
|
3
3
|
$db-sizing-2xs: var(--db-sizing-2xs);
|
|
4
4
|
$db-sizing-xs: var(--db-sizing-xs);
|
|
@@ -9,7 +9,7 @@ $db-sizing-xl: var(--db-sizing-xl);
|
|
|
9
9
|
$db-sizing-2xl: var(--db-sizing-2xl);
|
|
10
10
|
$db-sizing-3xl: var(--db-sizing-3xl);
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
// Use fixed spacings for all kinds of distances (margin, padding, ...)
|
|
13
13
|
$db-spacing-fixed-3xs: var(--db-spacing-fixed-3xs);
|
|
14
14
|
$db-spacing-fixed-2xs: var(--db-spacing-fixed-2xs);
|
|
15
15
|
$db-spacing-fixed-xs: var(--db-spacing-fixed-xs);
|
|
@@ -20,8 +20,8 @@ $db-spacing-fixed-xl: var(--db-spacing-fixed-xl);
|
|
|
20
20
|
$db-spacing-fixed-2xl: var(--db-spacing-fixed-2xl);
|
|
21
21
|
$db-spacing-fixed-3xl: var(--db-spacing-fixed-3xl);
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding.
|
|
23
|
+
// The primary use-case for responsive spacings are
|
|
24
|
+
// paddings/gaps in an application e.g. the <main> should have a responsive padding.
|
|
25
25
|
$db-spacing-responsive-3xs: var(--db-spacing-responsive-3xs);
|
|
26
26
|
$db-spacing-responsive-2xs: var(--db-spacing-responsive-2xs);
|
|
27
27
|
$db-spacing-responsive-xs: var(--db-spacing-responsive-xs);
|
|
@@ -32,13 +32,13 @@ $db-spacing-responsive-xl: var(--db-spacing-responsive-xl);
|
|
|
32
32
|
$db-spacing-responsive-2xl: var(--db-spacing-responsive-2xl);
|
|
33
33
|
$db-spacing-responsive-3xl: var(--db-spacing-responsive-3xl);
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
// Elevation
|
|
36
36
|
|
|
37
37
|
$db-elevation-sm: var(--db-elevation-sm);
|
|
38
38
|
$db-elevation-md: var(--db-elevation-md);
|
|
39
39
|
$db-elevation-lg: var(--db-elevation-lg);
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
// Border
|
|
42
42
|
|
|
43
43
|
$db-border-width-3xs: var(--db-border-width-3xs);
|
|
44
44
|
$db-border-width-2xs: var(--db-border-width-2xs);
|
|
@@ -60,7 +60,7 @@ $db-border-radius-2xl: var(--db-border-radius-2xl);
|
|
|
60
60
|
$db-border-radius-3xl: var(--db-border-radius-3xl);
|
|
61
61
|
$db-border-radius-full: var(--db-border-radius-full);
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
// Opacity
|
|
64
64
|
|
|
65
65
|
$db-opacity-3xs: var(--db-opacity-3xs);
|
|
66
66
|
$db-opacity-2xs: var(--db-opacity-2xs);
|
|
@@ -73,7 +73,7 @@ $db-opacity-2xl: var(--db-opacity-2xl);
|
|
|
73
73
|
$db-opacity-3xl: var(--db-opacity-3xl);
|
|
74
74
|
$db-opacity-full: var(--db-opacity-full);
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
// Transitions
|
|
77
77
|
|
|
78
78
|
$db-transition-duration-extra-slow: var(--db-transition-duration-extra-slow);
|
|
79
79
|
$db-transition-duration-slow: var(--db-transition-duration-slow);
|
|
@@ -89,7 +89,7 @@ $db-transition-straight-functional: var(--db-transition-straight-functional);
|
|
|
89
89
|
$db-transition-straight-show: var(--db-transition-straight-show);
|
|
90
90
|
$db-transition-straight-hide: var(--db-transition-straight-hide);
|
|
91
91
|
|
|
92
|
-
|
|
92
|
+
// Screen sizes
|
|
93
93
|
|
|
94
94
|
$db-screen-xs: var(--db-screen-xs);
|
|
95
95
|
$db-screen-sm: var(--db-screen-sm);
|
|
@@ -97,7 +97,7 @@ $db-screen-md: var(--db-screen-md);
|
|
|
97
97
|
$db-screen-lg: var(--db-screen-lg);
|
|
98
98
|
$db-screen-xl: var(--db-screen-xl);
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
// Container sizes
|
|
101
101
|
|
|
102
102
|
$db-container-3xs: var(--db-container-3xs);
|
|
103
103
|
$db-container-2xs: var(--db-container-2xs);
|
|
@@ -41,16 +41,6 @@
|
|
|
41
41
|
font-weight: 900;
|
|
42
42
|
src: url("/assets/fonts/OpenSans-ExtraBold-EU.woff2") format("woff2");
|
|
43
43
|
}
|
|
44
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
45
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
46
|
-
/* The primary use-case for responsive spacings are
|
|
47
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
48
|
-
/* Elevation */
|
|
49
|
-
/* Border */
|
|
50
|
-
/* Opacity */
|
|
51
|
-
/* Transitions */
|
|
52
|
-
/* Screen sizes */
|
|
53
|
-
/* Container sizes */
|
|
54
44
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
55
45
|
blockquote:not([class]), [data-mode], :root,
|
|
56
46
|
:host {
|
|
@@ -6023,12 +6013,6 @@ html::after {
|
|
|
6023
6013
|
inherits: true;
|
|
6024
6014
|
}
|
|
6025
6015
|
/* Use this file if you want the default color and density in your project */
|
|
6026
|
-
/**
|
|
6027
|
-
Generates 3 types of placeholders, e.g:
|
|
6028
|
-
- %db-component-variables-md
|
|
6029
|
-
- %db-font-size-md
|
|
6030
|
-
- %db-overwrite-font-size-md
|
|
6031
|
-
*/
|
|
6032
6016
|
@layer variables {}
|
|
6033
6017
|
|
|
6034
6018
|
@layer variables {}
|
|
@@ -6112,12 +6096,6 @@ code {
|
|
|
6112
6096
|
|
|
6113
6097
|
@layer variables {}
|
|
6114
6098
|
|
|
6115
|
-
/* Use for body tags like <p> */
|
|
6116
|
-
/* Use for headline tags like <h1> */
|
|
6117
|
-
/**
|
|
6118
|
-
* @mixin screen-min-max
|
|
6119
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
6120
|
-
*/
|
|
6121
6099
|
@layer variables {}
|
|
6122
6100
|
|
|
6123
6101
|
:root,
|
|
@@ -10475,7 +10453,6 @@ head:has([name=color-scheme][content=dark]) + body {
|
|
|
10475
10453
|
--db-color-scheme: dark;
|
|
10476
10454
|
}
|
|
10477
10455
|
|
|
10478
|
-
/* TODO: Switch to attr() as soon as this one is fully supported */
|
|
10479
10456
|
[data-mode=light] {
|
|
10480
10457
|
color-scheme: light;
|
|
10481
10458
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
// Palette for additional colors
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
// Note: In general you don't need this file. Use this only if you really know what you do!
|
|
4
4
|
|
|
5
5
|
// yellow
|
|
6
6
|
$db-yellow-0: var(--db-yellow-0);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
// Palette colors
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
// Note: In general you don't need this file. Use this only if you really know what you do!
|
|
4
4
|
|
|
5
5
|
// brand
|
|
6
6
|
$db-brand-0: var(--db-brand-0);
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -126,12 +110,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
126
110
|
|
|
127
111
|
@layer variables {}
|
|
128
112
|
|
|
129
|
-
/* Use for body tags like <p> */
|
|
130
|
-
/* Use for headline tags like <h1> */
|
|
131
|
-
/**
|
|
132
|
-
* @mixin screen-min-max
|
|
133
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
134
|
-
*/
|
|
135
113
|
.db-density-expressive,
|
|
136
114
|
[data-density=expressive] {
|
|
137
115
|
/* stylelint-disable-next-line at-rule-prelude-no-invalid,layer-name-pattern */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
.db-density-expressive,
|
|
130
108
|
[data-density=expressive] {
|
|
131
109
|
/* stylelint-disable-next-line at-rule-prelude-no-invalid,layer-name-pattern */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
@layer variables {}
|
|
130
108
|
|
|
131
109
|
@layer variables {}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -120,12 +104,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
120
104
|
|
|
121
105
|
@layer variables {}
|
|
122
106
|
|
|
123
|
-
/* Use for body tags like <p> */
|
|
124
|
-
/* Use for headline tags like <h1> */
|
|
125
|
-
/**
|
|
126
|
-
* @mixin screen-min-max
|
|
127
|
-
* @param $data an object like (min:"sm", max:"lg") or (min: "sm")
|
|
128
|
-
*/
|
|
129
107
|
@layer variables {}
|
|
130
108
|
|
|
131
109
|
.db-density-regular,
|
|
@@ -32,12 +32,10 @@
|
|
|
32
32
|
|
|
33
33
|
$font-sizes: "3xl", "2xl", "xl", "lg", "md", "sm", "xs", "2xs", "3xs";
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
- %db-overwrite-font-size-md
|
|
40
|
-
*/
|
|
35
|
+
// Generates 3 types of placeholders, e.g.:
|
|
36
|
+
// - %db-component-variables-md
|
|
37
|
+
// - %db-font-size-md
|
|
38
|
+
// - %db-overwrite-font-size-md
|
|
41
39
|
@mixin generate-font-sizes() {
|
|
42
40
|
@each $font-size in $font-sizes {
|
|
43
41
|
%db-component-variables-#{$font-size} {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// Use for body tags like <p>
|
|
2
2
|
|
|
3
3
|
$db-type-body-3xs: var(--db-type-body-3xs);
|
|
4
4
|
$db-type-body-2xs: var(--db-type-body-2xs);
|
|
@@ -10,7 +10,7 @@ $db-type-body-xl: var(--db-type-body-xl);
|
|
|
10
10
|
$db-type-body-2xl: var(--db-type-body-2xl);
|
|
11
11
|
$db-type-body-3xl: var(--db-type-body-3xl);
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
// Use for headline tags like <h1>
|
|
14
14
|
|
|
15
15
|
$db-type-headline-3xs: var(--db-type-headline-3xs);
|
|
16
16
|
$db-type-headline-2xs: var(--db-type-headline-2xs);
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
.db-font-size-3xl,
|
|
@@ -318,6 +302,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
318
302
|
--db-icon-font-size: var(--db-base-headline-icon-font-size-3xs);
|
|
319
303
|
}
|
|
320
304
|
}
|
|
321
|
-
|
|
322
|
-
/* Use for body tags like <p> */
|
|
323
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
.db-font-size-3xl,
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
.db-font-size-3xl,
|
|
@@ -210,6 +194,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
210
194
|
}
|
|
211
195
|
|
|
212
196
|
@layer variables {}
|
|
213
|
-
|
|
214
|
-
/* Use for body tags like <p> */
|
|
215
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Use sizing's for fixed heights/widths e.g. the db-button has always a fixed height */
|
|
2
|
-
/* Use fixed spacings for all kind of distances (margin, padding, ...) */
|
|
3
|
-
/* The primary use-case for responsive spacings are
|
|
4
|
-
paddings/gaps in an application e.g. the <main> should have a responsive padding. */
|
|
5
|
-
/* Elevation */
|
|
6
|
-
/* Border */
|
|
7
|
-
/* Opacity */
|
|
8
|
-
/* Transitions */
|
|
9
|
-
/* Screen sizes */
|
|
10
|
-
/* Container sizes */
|
|
11
1
|
/* Variants for adaptive components like input, select, notification, ... */
|
|
12
2
|
@layer variables {}
|
|
13
3
|
|
|
@@ -43,12 +33,6 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
43
33
|
|
|
44
34
|
@layer variables {}
|
|
45
35
|
|
|
46
|
-
/**
|
|
47
|
-
Generates 3 types of placeholders, e.g:
|
|
48
|
-
- %db-component-variables-md
|
|
49
|
-
- %db-font-size-md
|
|
50
|
-
- %db-overwrite-font-size-md
|
|
51
|
-
*/
|
|
52
36
|
@layer variables {}
|
|
53
37
|
|
|
54
38
|
@layer variables {}
|
|
@@ -114,6 +98,3 @@ paddings/gaps in an application e.g. the <main> should have a responsive padding
|
|
|
114
98
|
@layer variables {}
|
|
115
99
|
|
|
116
100
|
@layer variables {}
|
|
117
|
-
|
|
118
|
-
/* Use for body tags like <p> */
|
|
119
|
-
/* Use for headline tags like <h1> */
|