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