@konomi-app/ui 5.10.4 → 5.11.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/dist/index.cjs +9 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2721,9 +2721,10 @@ var toastStyles = import_lit3.css`
|
|
|
2721
2721
|
/* Card */
|
|
2722
2722
|
--toast-card-bg: #fff;
|
|
2723
2723
|
--toast-card-border: #f3f4f6;
|
|
2724
|
-
--toast-card-shadow:
|
|
2724
|
+
--toast-card-shadow:
|
|
2725
|
+
rgba(9, 30, 66, 0.31) 0px 0px 1px 0px, rgba(9, 30, 66, 0.25) 0px 20px 32px -8px;
|
|
2725
2726
|
--toast-card-radius: 4px;
|
|
2726
|
-
--toast-card-padding:
|
|
2727
|
+
--toast-card-padding: 16px 16px 16px 24px;
|
|
2727
2728
|
|
|
2728
2729
|
/* Colors (inherit from dialog when available) */
|
|
2729
2730
|
--toast-success: var(--dialog-success, #22c55e);
|
|
@@ -2891,14 +2892,15 @@ var toastStyles = import_lit3.css`
|
|
|
2891
2892
|
pointer-events: none;
|
|
2892
2893
|
}
|
|
2893
2894
|
|
|
2894
|
-
/* Type-based
|
|
2895
|
+
/* Type-based left accent bar */
|
|
2895
2896
|
.toast-card::before {
|
|
2896
2897
|
content: '';
|
|
2897
2898
|
position: absolute;
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2899
|
+
left: 10px;
|
|
2900
|
+
top: 12px;
|
|
2901
|
+
bottom: 12px;
|
|
2902
|
+
width: 4px;
|
|
2903
|
+
border-radius: 9999px;
|
|
2902
2904
|
}
|
|
2903
2905
|
.toast-card[data-type='success']::before {
|
|
2904
2906
|
background: var(--toast-success);
|