Add small UI tweak to the inline color preview square (#33655)

Follow-up to https://github.com/zed-industries/zed/pull/33605 so it is
just a bit more subtle and smaller.

Release Notes:

- N/A
This commit is contained in:
Danilo Leal 2025-06-30 11:19:58 -03:00 committed by GitHub
parent 59e88ce82b
commit 402c61c00d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -344,16 +344,14 @@ impl<'a> Iterator for InlayChunks<'a> {
id: ChunkRendererId::Inlay(inlay.id),
render: Arc::new(move |cx| {
div()
.w_4()
.h_4()
.relative()
.size_3p5()
.child(
div()
.absolute()
.right_1()
.w_3p5()
.h_3p5()
.border_2()
.size_3()
.border_1()
.border_color(cx.theme().colors().border)
.bg(color),
)