We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc8adb commit 7c11d2bCopy full SHA for 7c11d2b
1 file changed
core/src/components/toolbar/toolbar.ionic.scss
@@ -13,6 +13,8 @@
13
--padding-start: #{globals.$ion-space-200};
14
--padding-end: #{globals.$ion-space-200};
15
--min-height: #{globals.$ion-scale-1400};
16
+ --start-size: var(--start-end-size, 0);
17
+ --end-size: var(--start-end-size, 0);
18
}
19
20
.toolbar-container {
@@ -87,7 +89,7 @@
87
89
:host(.show-end) slot[name="end"] {
88
90
display: flex;
91
- flex: 0 0 var(--start-end-size, 0);
92
+ flex: 0 0 var(--end-size, 0);
93
justify-content: flex-end;
94
95
text-align: end;
@@ -97,7 +99,7 @@
97
99
:host(.show-start) slot[name="start"] {
98
100
101
102
+ flex: 0 0 var(--start-size, 0);
103
104
105
:host(.has-primary-content) slot[name="primary"],
0 commit comments