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 12:57:31 -05:00 committed by GitHub
parent 9c054f207e
commit aceab76ae4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
49 changed files with 65 additions and 65 deletions

View file

@ -914,7 +914,7 @@ impl RemoteServerProjects {
.child(
h_flex()
.bg(theme.colors().editor_background)
.rounded_b_md()
.rounded_b_sm()
.w_full()
.map(|this| {
if let Some(ssh_prompt) = ssh_prompt {

View file

@ -331,7 +331,7 @@ impl RenderOnce for SshConnectionHeader {
.px(DynamicSpacing::Base12.rems(cx))
.pt(DynamicSpacing::Base08.rems(cx))
.pb(DynamicSpacing::Base04.rems(cx))
.rounded_t_md()
.rounded_t_sm()
.w_full()
.gap_1p5()
.child(Icon::new(IconName::Server).size(IconSize::XSmall))