matcha-theme 19.61.0 → 19.62.0
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/base/_reset.scss +1 -1
- package/components/matcha-cards.scss +4 -4
- package/package.json +1 -1
package/base/_reset.scss
CHANGED
|
@@ -117,7 +117,7 @@ How to use
|
|
|
117
117
|
.matcha-message-box,
|
|
118
118
|
.matcha-msg-box,
|
|
119
119
|
.message-box {
|
|
120
|
-
background-color:
|
|
120
|
+
background-color: getPrimaryAlpha($theme);
|
|
121
121
|
border-left-color: map-get($primary, default);
|
|
122
122
|
color: map-get($foreground, foreground);
|
|
123
123
|
|
|
@@ -181,11 +181,11 @@
|
|
|
181
181
|
|
|
182
182
|
// fg
|
|
183
183
|
&[color="fg"][alpha]:not([alpha="false"]){
|
|
184
|
-
background:
|
|
184
|
+
background: getForegroundAlpha($theme);
|
|
185
185
|
color: map-get($foreground, foreground)
|
|
186
186
|
}
|
|
187
187
|
&[color="fg"][tint]:not([tint="false"]){
|
|
188
|
-
background:
|
|
188
|
+
background: getForegroundAlpha($theme);
|
|
189
189
|
color: map-get($foreground, foreground);
|
|
190
190
|
}
|
|
191
191
|
&[color="fg"][outline]:not([outline="false"]),
|
|
@@ -200,11 +200,11 @@
|
|
|
200
200
|
|
|
201
201
|
//basic
|
|
202
202
|
&[color="basic"][alpha]:not([alpha="false"]){
|
|
203
|
-
background:
|
|
203
|
+
background: getForegroundAlpha($theme);
|
|
204
204
|
color: map-get($foreground, foreground)
|
|
205
205
|
}
|
|
206
206
|
&[color="basic"][tint]:not([tint="false"]){
|
|
207
|
-
background:
|
|
207
|
+
background: getForegroundAlpha($theme);
|
|
208
208
|
color: getForeground($theme);
|
|
209
209
|
}
|
|
210
210
|
&[color="basic"][outline]:not([outline="false"]),
|