matcha-theme 1.0.10 → 1.0.12
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/abstracts/_functions.scss +9 -12
- package/abstracts/_grid.scss +9 -1
- package/abstracts/_typography.scss +4 -20
- package/base/_helpers.scss +131 -912
- package/base/_typography.scss +10 -5
- package/components/matcha-header.scss +2 -1
- package/components/matcha-horizontal-tree.scss +4 -2
- package/components/matcha-table.scss +2 -1
- package/fonts/CircularStd-Black.eot +0 -0
- package/fonts/CircularStd-Black.svg +3426 -0
- package/fonts/CircularStd-Black.ttf +0 -0
- package/fonts/CircularStd-Black.woff +0 -0
- package/fonts/CircularStd-Black.woff2 +0 -0
- package/fonts/CircularStd-Regular.eot +0 -0
- package/fonts/CircularStd-Regular.otf +0 -0
- package/fonts/CircularStd-Regular.svg +2375 -5559
- package/fonts/CircularStd-Regular.ttf +0 -0
- package/fonts/CircularStd-Regular.woff +0 -0
- package/fonts/CircularStd-Regular.woff2 +0 -0
- package/main.scss +12 -0
- package/package.json +1 -1
- package/vendors/angular-material-fixes.scss +2 -1
- package/vendors/calendar.scss +8 -4
package/base/_typography.scss
CHANGED
|
@@ -173,17 +173,22 @@ How to use
|
|
|
173
173
|
.par-xl {
|
|
174
174
|
font-size: 24px !important;
|
|
175
175
|
}
|
|
176
|
-
|
|
176
|
+
.text-medium,
|
|
177
177
|
.text-semibold {
|
|
178
|
-
font-weight:
|
|
178
|
+
font-weight: 500;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
.text-regular
|
|
181
|
+
.text-regular,
|
|
182
|
+
.text-book {
|
|
182
183
|
font-weight: 400;
|
|
183
184
|
}
|
|
184
185
|
|
|
185
|
-
.text-
|
|
186
|
-
font-weight:
|
|
186
|
+
.text-bold {
|
|
187
|
+
font-weight: 700;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.text-black {
|
|
191
|
+
font-weight: 900;
|
|
187
192
|
}
|
|
188
193
|
|
|
189
194
|
.matcha-message-box,
|
|
@@ -113,7 +113,8 @@ How to use
|
|
|
113
113
|
// matcha-header__content__title
|
|
114
114
|
&__title {
|
|
115
115
|
font-size: 20px;
|
|
116
|
-
font-family: "CircularStd
|
|
116
|
+
font-family: "CircularStd", "Helvetica Neue", "Arial", sans-serif;
|
|
117
|
+
font-weight: 700;
|
|
117
118
|
margin: 0 16px 0 0;
|
|
118
119
|
line-height: 48px;
|
|
119
120
|
min-height: 48px;
|
|
@@ -149,7 +149,8 @@
|
|
|
149
149
|
align-items: center;
|
|
150
150
|
letter-spacing: 0.08em;
|
|
151
151
|
text-transform: uppercase;
|
|
152
|
-
font-family: "CircularStd
|
|
152
|
+
font-family: "CircularStd";
|
|
153
|
+
font-weight: 700;
|
|
153
154
|
|
|
154
155
|
&-bullet {
|
|
155
156
|
height: 16px;
|
|
@@ -226,7 +227,8 @@
|
|
|
226
227
|
|
|
227
228
|
&-begin {
|
|
228
229
|
font-size: 16px;
|
|
229
|
-
font-family: "CircularStd
|
|
230
|
+
font-family: "CircularStd";
|
|
231
|
+
font-weight: 700;
|
|
230
232
|
line-height: 16px;
|
|
231
233
|
display: -webkit-box;
|
|
232
234
|
-webkit-line-clamp: 2;
|
|
Binary file
|