@team-monolith/cds 1.32.0 → 1.34.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.
|
@@ -139,6 +139,7 @@ const COLOR_TO_BUTTON_STYLE = (theme, color, disabled) => ({
|
|
|
139
139
|
})[color];
|
|
140
140
|
const SIZE_TO_BUTTON_STYLE = {
|
|
141
141
|
large: css `
|
|
142
|
+
min-width: 100px;
|
|
142
143
|
height: 56px;
|
|
143
144
|
padding: 0 20px;
|
|
144
145
|
gap: 10px;
|
|
@@ -149,6 +150,7 @@ const SIZE_TO_BUTTON_STYLE = {
|
|
|
149
150
|
}
|
|
150
151
|
`,
|
|
151
152
|
medium: css `
|
|
153
|
+
min-width: 82px;
|
|
152
154
|
height: 48px;
|
|
153
155
|
padding: 0 16px;
|
|
154
156
|
gap: 8px;
|
|
@@ -159,6 +161,7 @@ const SIZE_TO_BUTTON_STYLE = {
|
|
|
159
161
|
}
|
|
160
162
|
`,
|
|
161
163
|
small: css `
|
|
164
|
+
min-width: 64px;
|
|
162
165
|
height: 36px;
|
|
163
166
|
padding: 0 12px;
|
|
164
167
|
gap: 8px;
|
|
@@ -169,6 +172,7 @@ const SIZE_TO_BUTTON_STYLE = {
|
|
|
169
172
|
}
|
|
170
173
|
`,
|
|
171
174
|
xsmall: css `
|
|
175
|
+
min-width: 52px;
|
|
172
176
|
height: 28px;
|
|
173
177
|
padding: 0 8px;
|
|
174
178
|
gap: 4px;
|