feat: add wallpaper-manager

This commit is contained in:
tux
2025-10-07 01:49:01 +05:30
parent 410ee29aa1
commit d185a7e694
4 changed files with 138 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
@use "./_variable.scss" as *;
@use "sass:math";
@use "sass:list";
window.wallpaper-manager {
background: $bg-color;
color: $fg-color;
min-width: 400px;
margin: 10px;
padding: 20px;
border-radius: $rounded;
.button {
border-radius: $rounded;
opacity: 0.5;
&:hover,
&:focus {
opacity: 1;
}
}
picture {
border-radius: $rounded;
&:hover {
background: $inactive-color;
}
}
}

View File

@@ -12,3 +12,6 @@
// control center
@use "./_control-center.scss";
// wallpaper manager
@use "./_wallpaper-manager.scss";