mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 12:51:54 +05:30
feat: add wallpaper-manager
This commit is contained in:
30
style/_wallpaper-manager.scss
Normal file
30
style/_wallpaper-manager.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
@@ -12,3 +12,6 @@
|
||||
|
||||
// control center
|
||||
@use "./_control-center.scss";
|
||||
|
||||
// wallpaper manager
|
||||
@use "./_wallpaper-manager.scss";
|
||||
|
Reference in New Issue
Block a user