@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.js
CHANGED
|
@@ -2693,9 +2693,10 @@ var toastStyles = css2`
|
|
|
2693
2693
|
/* Card */
|
|
2694
2694
|
--toast-card-bg: #fff;
|
|
2695
2695
|
--toast-card-border: #f3f4f6;
|
|
2696
|
-
--toast-card-shadow:
|
|
2696
|
+
--toast-card-shadow:
|
|
2697
|
+
rgba(9, 30, 66, 0.31) 0px 0px 1px 0px, rgba(9, 30, 66, 0.25) 0px 20px 32px -8px;
|
|
2697
2698
|
--toast-card-radius: 4px;
|
|
2698
|
-
--toast-card-padding:
|
|
2699
|
+
--toast-card-padding: 16px 16px 16px 24px;
|
|
2699
2700
|
|
|
2700
2701
|
/* Colors (inherit from dialog when available) */
|
|
2701
2702
|
--toast-success: var(--dialog-success, #22c55e);
|
|
@@ -2863,14 +2864,15 @@ var toastStyles = css2`
|
|
|
2863
2864
|
pointer-events: none;
|
|
2864
2865
|
}
|
|
2865
2866
|
|
|
2866
|
-
/* Type-based
|
|
2867
|
+
/* Type-based left accent bar */
|
|
2867
2868
|
.toast-card::before {
|
|
2868
2869
|
content: '';
|
|
2869
2870
|
position: absolute;
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2871
|
+
left: 10px;
|
|
2872
|
+
top: 12px;
|
|
2873
|
+
bottom: 12px;
|
|
2874
|
+
width: 4px;
|
|
2875
|
+
border-radius: 9999px;
|
|
2874
2876
|
}
|
|
2875
2877
|
.toast-card[data-type='success']::before {
|
|
2876
2878
|
background: var(--toast-success);
|