Skip to content

Commit 7828a7a

Browse files
fix(button): update tokens (#30776)
Issue number: internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - update tokens; ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#footer for more information. -->
1 parent 745c134 commit 7828a7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/components/button/button.ionic.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,21 @@
185185
// --------------------------------------------------
186186

187187
:host(.button-soft) {
188-
--border-radius: #{globals.$ion-border-radius-200};
188+
--border-radius: #{globals.$ion-soft-xs};
189189
}
190190

191191
// Round Button
192192
// --------------------------------------------------
193193

194194
:host(.button-round) {
195-
--border-radius: #{globals.$ion-border-radius-full};
195+
--border-radius: #{globals.$ion-round-xs};
196196
}
197197

198198
// Rectangular Button
199199
// --------------------------------------------------
200200

201201
:host(.button-rectangular) {
202-
--border-radius: #{globals.$ion-border-radius-0};
202+
--border-radius: #{globals.$ion-rectangular-xs};
203203
}
204204

205205
// Button: Focus

0 commit comments

Comments
 (0)