@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 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: 0 4px 12px rgb(0 0 0 / 0.08), 0 1px 3px rgb(0 0 0 / 0.06);
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: 14px 16px;
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 top stripe */
2895
+ /* Type-based left accent bar */
2895
2896
  .toast-card::before {
2896
2897
  content: '';
2897
2898
  position: absolute;
2898
- bottom: 0;
2899
- left: 0;
2900
- right: 0;
2901
- height: 2px;
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);