WIP - Added crappy popover spawning where button clicked.

This commit is contained in:
Jas Singh
2024-06-11 01:23:51 -07:00
parent 9745d6ee3a
commit fad852c13f
13 changed files with 266 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
@mixin floating-widget {
// box-shadow: 0 0 5px 0 $shadow-color;
margin: max($spacing, 8px);
border: 3px solid $surface1;
border: 2px solid $surface0;
background-color: $base;
color: $primary_fg;
border-radius: 11px;

View File

@@ -24,3 +24,4 @@
//modules - menus
@import "menus/powermenu";
@import "menus/audiomenu";

13
scss/menus/audiomenu.scss Normal file
View File

@@ -0,0 +1,13 @@
@import "../colors";
.audiomenu-items {
background: $mantle;
border: 1px solid $sky;
min-width: 200px;
min-height: 300px;
}
.click-me {
background: $lavender;
margin: 140px 0px;
}