Backup dotfiles

This commit is contained in:
Ano-sys
2025-01-15 01:39:27 +01:00
commit cbe4355c3d
256 changed files with 4725 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
@mixin hover($bg) {
background-color: $bg;
&:hover {
@if $darkmode == true {
background-color: lighten($bg, 5%);
}
@else {
background-color: darken($bg, 5%);
}
}
}
+8
View File
@@ -0,0 +1,8 @@
@mixin window {
background-color: $surface;
border-radius: 1rem;
padding: 1rem;
color: $onSurface;
box-shadow: 0 0 4px 2px $shadow;
margin: 1rem;
}