@juspay/svelte-ui-components 2.82.0 → 2.84.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.
|
@@ -72,6 +72,15 @@
|
|
|
72
72
|
padding: var(--toolbar-content-padding, 0px);
|
|
73
73
|
justify-content: var(--toolbar-justify-content, normal);
|
|
74
74
|
visibility: var(--toolbar-content-visibility, visible);
|
|
75
|
+
|
|
76
|
+
/* Content-row geometry: lets a fixed-height toolbar keep its row vertically
|
|
77
|
+
centered (height 100%) and clamp/center the row on wide viewports —
|
|
78
|
+
previously only reachable by piercing the component's internal DOM. All
|
|
79
|
+
defaults reproduce the previous rendering exactly. */
|
|
80
|
+
width: var(--toolbar-content-width, auto);
|
|
81
|
+
height: var(--toolbar-content-height, auto);
|
|
82
|
+
max-width: var(--toolbar-content-max-width, none);
|
|
83
|
+
margin: var(--toolbar-content-margin, 0);
|
|
75
84
|
}
|
|
76
85
|
|
|
77
86
|
.additional-content {
|