mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Decrease the size of timestamps in the assistant conversation editor (#4101)
This PR decreases the size of the timestamps in the assistant's conversation editor. Ideally we'd want to align the baseline of the timestamp text with the text in the sender button. I spent a while trying to do this, but it seems like it may be pretty tricky. Release Notes: - Decreased the size of timestamps in the assistant panel conversation editor.
This commit is contained in:
parent
d2eab5c1e2
commit
b2afa73321
@ -2311,8 +2311,7 @@ impl ConversationEditor {
|
||||
}
|
||||
});
|
||||
|
||||
div()
|
||||
.h_flex()
|
||||
h_flex()
|
||||
.id(("message_header", message_id.0))
|
||||
.h_11()
|
||||
.relative()
|
||||
@ -2328,6 +2327,7 @@ impl ConversationEditor {
|
||||
.add_suffix(true)
|
||||
.to_string(),
|
||||
)
|
||||
.size(LabelSize::XSmall)
|
||||
.color(Color::Muted),
|
||||
)
|
||||
.children(
|
||||
|
Loading…
Reference in New Issue
Block a user