@messaia/cdk 17.1.0-rc19 → 17.1.0-rc21
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/esm2022/lib/base/interceptors/base.interceptor.mjs +2 -2
- package/esm2022/lib/table/components/dynamic-table/dynamic-table.component.mjs +3 -3
- package/fesm2022/messaia-cdk.mjs +3 -3
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/lib/layout/_layout-theme.scss +14 -8
- package/package.json +1 -1
|
@@ -227,28 +227,34 @@
|
|
|
227
227
|
|
|
228
228
|
/* #region SnackBar */
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
mat-snack-bar-container {
|
|
231
231
|
&.error {
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
.mdc-snackbar__surface {
|
|
233
|
+
background-color: mat-color($warn);
|
|
234
|
+
white-space: pre-line;
|
|
235
|
+
}
|
|
234
236
|
|
|
235
|
-
.mat-simple-snackbar-action {
|
|
237
|
+
.mat-mdc-simple-snackbar-action {
|
|
236
238
|
color: white;
|
|
237
239
|
}
|
|
238
240
|
}
|
|
239
241
|
|
|
240
242
|
&.warn {
|
|
241
|
-
|
|
243
|
+
.mdc-snackbar__surface {
|
|
244
|
+
background-color: $accent-color;
|
|
245
|
+
}
|
|
242
246
|
|
|
243
|
-
.mat-simple-snackbar-action {
|
|
247
|
+
.mat-mdc-simple-snackbar-action {
|
|
244
248
|
color: white;
|
|
245
249
|
}
|
|
246
250
|
}
|
|
247
251
|
|
|
248
252
|
&.primary {
|
|
249
|
-
|
|
253
|
+
.mdc-snackbar__surface {
|
|
254
|
+
background-color: mat-color($primary);
|
|
255
|
+
}
|
|
250
256
|
|
|
251
|
-
.mat-simple-snackbar-action {
|
|
257
|
+
.mat-mdc-simple-snackbar-action {
|
|
252
258
|
color: white;
|
|
253
259
|
}
|
|
254
260
|
}
|