@elderbyte/ngx-starter 19.1.21 → 19.1.22
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/package.json
CHANGED
|
@@ -36,6 +36,14 @@
|
|
|
36
36
|
--mat-menu-container-color: var(--md-sys-color-surface-container-lowest);
|
|
37
37
|
--mat-tree-container-background-color: transparent;
|
|
38
38
|
|
|
39
|
+
// typography overwrites
|
|
40
|
+
// --md-sys-typescale-title-large-line-height: 1.75rem;
|
|
41
|
+
// --md-sys-typescale-title-large-size: 1.375rem;
|
|
42
|
+
// --md-sys-typescale-title-large: 400 1.375rem / 1.75rem Roboto, sans-serif;
|
|
43
|
+
--md-sys-typescale-title-large-line-height: 1.625rem;
|
|
44
|
+
--md-sys-typescale-title-large-size: 1.3125rem;
|
|
45
|
+
--md-sys-typescale-title-large: 400 1.3125rem / 1.625rem Roboto, sans-serif;
|
|
46
|
+
|
|
39
47
|
// import fix for overflow of mat-icons, default is 40px in m3, in m2 it was 48px
|
|
40
48
|
--mdc-icon-button-state-layer-size: 48px;
|
|
41
49
|
|
|
@@ -56,10 +64,12 @@
|
|
|
56
64
|
--elder-main-nav-bg: var(--md-sys-color-surface-container-lowest);
|
|
57
65
|
--elder-nav-item-height: 54px;
|
|
58
66
|
--elder-button-horizontal-padding: 19px;
|
|
59
|
-
|
|
60
|
-
//
|
|
61
|
-
|
|
62
|
-
|
|
67
|
+
|
|
68
|
+
// card and pane title margins
|
|
69
|
+
--elder-card-title-margin-bottom: 6px;
|
|
70
|
+
--elder-card-subtitle-margin-bottom: 10px;
|
|
71
|
+
--elder-pane-title-margin-bottom: 2px;
|
|
72
|
+
--elder-pane-subtitle-margin-bottom: 10px;
|
|
63
73
|
|
|
64
74
|
// backdrop highlight color
|
|
65
75
|
--elder-backdrop-highlight-color: rgba(0, 0, 0, 0.1);
|
|
@@ -116,14 +116,13 @@
|
|
|
116
116
|
.elder-card-title {
|
|
117
117
|
margin-top: 0 !important;
|
|
118
118
|
padding-bottom: 0 !important;
|
|
119
|
-
margin-bottom:
|
|
120
|
-
//font-weight: 500;
|
|
119
|
+
margin-bottom: var(--elder-card-title-margin-bottom) !important;
|
|
121
120
|
}
|
|
122
121
|
|
|
123
122
|
.elder-card-subtitle {
|
|
124
123
|
margin-top: 0 !important;
|
|
125
124
|
padding-bottom: 0px !important;
|
|
126
|
-
margin-bottom:
|
|
125
|
+
margin-bottom: var(--elder-card-subtitle-margin-bottom) !important;
|
|
127
126
|
}
|
|
128
127
|
|
|
129
128
|
/**************************************************************************
|