fix(home): Add missing semicolon

This commit is contained in:
punkfairie 2025-03-02 10:43:23 -08:00
parent 6c95c44f87
commit 0c2968e009
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -203,109 +203,109 @@ in {
style = let style = let
transition = "all 0.3s cubic-bezier(.55,-0.68,.48,1.682)"; transition = "all 0.3s cubic-bezier(.55,-0.68,.48,1.682)";
in in
# css # css
'' ''
* { * {
font-family: ${config.marleyos.theme.fonts.monospace.name}; font-family: ${config.marleyos.theme.fonts.monospace.name};
font-size: 16px; font-size: 16px;
border-radius: 0; border-radius: 0;
border: none; border: none;
min-height: 0; min-height: 0;
} }
window#waybar { window#waybar {
background: transparent; background: transparent;
} }
#workspaces { #workspaces {
color: @base00; color: @base00;
background: @base01; background: @base01;
margin: 4px 4px; margin: 4px 4px;
padding: 5px 5px; padding: 5px 5px;
border-radius: 16px; border-radius: 16px;
} }
#workspaces button { #workspaces button {
font-weight: bold; font-weight: bold;
padding: 0 5px; padding: 0 5px;
margin: 0 3px; margin: 0 3px;
border-radius: 16px; border-radius: 16px;
color: @base00; color: @base00;
background: linear-gradient(45deg, @base08, @base0D); background: linear-gradient(45deg, @base08, @base0D);
opacity: 0.5; opacity: 0.5;
transition: ${transition}; transition: ${transition};
} }
#workspaces button.active { #workspaces button.active {
font-weight: bold; font-weight: bold;
padding: 0 5px; padding: 0 5px;
margin: 0 3px; margin: 0 3px;
border-radius: 16px; border-radius: 16px;
color: @base00; color: @base00;
background: linear-gradient(45deg, @base08, @base0D); background: linear-gradient(45deg, @base08, @base0D);
opacity: 1.0; opacity: 1.0;
transition: ${transition}; transition: ${transition};
min-width: 40px; min-width: 40px;
} }
#workspaces button:hover { #workspaces button:hover {
font-weight: bold; font-weight: bold;
border-radius: 16px; border-radius: 16px;
color: @base00; color: @base00;
background: linear-gradient(45deg, @base08, @iris); background: linear-gradient(45deg, @base08, @iris);
opacity: 0.8; opacity: 0.8;
transition: ${transition}; transition: ${transition};
} }
tooltip { tooltip {
background: @base00; background: @base00;
border: 1px solid @base08; border: 1px solid @base08;
border-radius: 12px; border-radius: 12px;
} }
tooltip label { tooltip label {
color: @base08; color: @base08;
} }
#window, #pulseaudio, #cpu, #memory, #idle_inhibitor { #window, #pulseaudio, #cpu, #memory, #idle_inhibitor {
font-weight: bold; font-weight: bold;
margin: 4px 0; margin: 4px 0;
margin-left: 7px; margin-left: 7px;
padding: 0 18px; padding: 0 18px;
background: @base04; background: @base04;
color: @base00; color: @base00;
border-radius: 24px 10px 24px 10px; border-radius: 24px 10px 24px 10px;
} }
#custom-startmenu { #custom-startmenu {
color: @base0B; color: @base0B;
background: @base02; background: @base02;
font-size: 28px; font-size: 28px;
margin: 0; margin: 0;
padding: 0 30px 0 15px; padding: 0 30px 0 15px;
border-radius: 0 0 40px 0; border-radius: 0 0 40px 0;
} }
#network, #battery, #custom-notifications, #network, #battery, #custom-notifications,
#tray, #custom-exit { #tray, #custom-exit {
font-weight: bold; font-weight: bold;
background: @base07; background: @base07;
color: @base00; color: @base00;
margin: 4px 0; margin: 4px 0;
margin-right: 7px; margin-right: 7px;
border-radius: 10px 24px 10px 24px; border-radius: 10px 24px 10px 24px;
padding: 0 18px; padding: 0 18px;
} }
#clock { #clock {
font-weight: bold; font-weight: bold;
color: @base00; color: @base00;
background: linear-gradient(90deg, @base0E, @base0C); background: linear-gradient(90deg, @base0E, @base0C);
margin: 0; margin: 0;
padding: 0 15px 0 30px; padding: 0 15px 0 30px;
border-radius: 0 0 0 40px; border-radius: 0 0 0 40px;
} }
'' '';
}; };
}; };
} }