We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17eb643 commit 85e95a2Copy full SHA for 85e95a2
crates/recent_projects/src/ssh_connections.rs
@@ -146,9 +146,9 @@ impl Render for SshPrompt {
146
.justify_center()
147
.child(
148
h_flex()
149
- .py_2()
150
- .px_4()
+ .p_2()
151
+ .flex_wrap()
152
.child(if self.error_message.is_some() {
153
Icon::new(IconName::XCircle)
154
.size(IconSize::Medium)
@@ -173,6 +173,8 @@ impl Render for SshPrompt {
173
)
174
175
div()
176
+ .text_ellipsis()
177
+ .overflow_x_hidden()
178
.when_some(self.error_message.as_ref(), |el, error| {
179
el.child(Label::new(format!("-{}", error)).size(LabelSize::Small))
180
})
0 commit comments