gpui: Rename rounded_md to rounded_sm (#26228)

This PR renames the `rounded_md` style method to `rounded_sm`.

Follow up to https://github.com/zed-industries/zed/pull/26221, which
freed up the `rounded_sm` name.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2025-03-06 17:57:31 +00:00
committed by GitHub
parent 9c054f207e
commit aceab76ae4
49 changed files with 65 additions and 65 deletions
@@ -509,9 +509,9 @@ impl RenderOnce for ButtonLike {
this.w(width).justify_center().text_center()
})
.when_some(self.rounding, |this, rounding| match rounding {
ButtonLikeRounding::All => this.rounded_md(),
ButtonLikeRounding::Left => this.rounded_l_md(),
ButtonLikeRounding::Right => this.rounded_r_md(),
ButtonLikeRounding::All => this.rounded_sm(),
ButtonLikeRounding::Left => this.rounded_l_sm(),
ButtonLikeRounding::Right => this.rounded_r_sm(),
})
.gap(DynamicSpacing::Base04.rems(cx))
.map(|this| match self.size {