fix(header_bar): increase compact height

Increases Compact header height to 40 (from 36), to better accommodate larger widgets (e.g. the search bar). This makes it distinct from the SSD header, which is now addressed by the `_` match case.
Also makes the horizontal header padding fixed at 8, so that the app window padding can also be 8.
This commit is contained in:
Vukašin Vojinović 2024-10-02 00:32:08 +02:00 committed by Michael Murphy
parent 228eb4d70d
commit e645dee2f0
8 changed files with 37 additions and 29 deletions

View file

@ -1,10 +1,14 @@
use crate::Spacing;
use serde::{Deserialize, Serialize};
/// Density options for the Cosmic theme
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub enum Density {
/// Lower padding/spacing of elements
Compact,
/// Higher padding/spacing of elements
Spacious,
/// Standard padding/spacing of elements
#[default]
Standard,
}