improv: use spacing variables in more places

This commit is contained in:
Vukašin Vojinović 2024-09-14 03:09:03 +02:00 committed by Ashley Wulber
parent 3c88edb217
commit 282700b987
3 changed files with 18 additions and 8 deletions

View file

@ -4,7 +4,7 @@
use iced_core::Padding;
use iced_style::container::StyleSheet;
use crate::{widget::divider, Apply, Element};
use crate::{theme, widget::divider, Apply, Element};
pub fn list_column<'a, Message: 'static>() -> ListColumn<'a, Message> {
ListColumn::default()
@ -21,7 +21,7 @@ pub struct ListColumn<'a, Message> {
impl<'a, Message: 'static> Default for ListColumn<'a, Message> {
fn default() -> Self {
Self {
spacing: 8,
spacing: theme::THEME.lock().unwrap().cosmic().spacing.space_xxs,
padding: Padding::from(0),
style: <crate::Theme as StyleSheet>::Style::List,
children: Vec::with_capacity(4),