Throw a little between filename and modified icon

We probably need a primitive to right-align an element within
its parent, but I don't have strong opinions about how that
should be designed, so I'm just adding this as a temporary
measure so that the tabs won't look too ugly in the meantime.
This commit is contained in:
Max Brunsfeld 2021-04-07 15:39:09 -07:00
parent ae57178f3e
commit 187eb95b13
2 changed files with 9 additions and 8 deletions

View File

@ -36,6 +36,11 @@ impl Container {
self
}
pub fn with_margin_left(mut self, margin: f32) -> Self {
self.margin.left = margin;
self
}
pub fn with_uniform_padding(mut self, padding: f32) -> Self {
self.padding = Padding {
top: padding,

View File

@ -196,16 +196,11 @@ impl Pane {
Align::new(
Flex::row()
.with_child(
Expanded::new(
1.0,
Label::new(title, settings.ui_font_family, settings.ui_font_size)
.boxed(),
)
.boxed(),
Label::new(title, settings.ui_font_family, settings.ui_font_size)
.boxed(),
)
.with_child(
Expanded::new(
1.0,
Container::new(
LineBox::new(
settings.ui_font_family,
settings.ui_font_size,
@ -217,6 +212,7 @@ impl Pane {
)
.boxed(),
)
.with_margin_left(20.)
.boxed(),
)
.boxed(),