ags(apps-window): fixed size for app widgets, auto-focus entry, better looking

This commit is contained in:
retrozinndev
2025-04-11 17:36:34 -03:00
parent 8f028b3cb9
commit 026ce6cec8
3 changed files with 135 additions and 43 deletions
+20 -13
View File
@@ -1,5 +1,7 @@
@use "mixins";
@use "colors";
@use "sass:color";
@use "./mixins";
@use "./colors";
@use "./functions";
.apps-window-container {
padding: 24px;
@@ -23,20 +25,25 @@
& flowbox {
padding: 16px 24px;
& > flowboxchild > button {
padding: 8px;
border-radius: 24px;
& > flowboxchild {
&:hover {
background: colors.$bg-translucent;
& > button {
padding: 8px;
border-radius: 24px;
& icon {
font-size: 64px;
}
& label {
margin-top: 6px;
}
}
& icon {
font-size: 64px;
}
& label {
margin-top: 6px;
&:focus > button,
&:selected > button,
& > button:hover {
background-color: rgba($color: colors.$bg-secondary, $alpha: .5);
}
}
}