A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _tile-preview.scss

View raw Download
text/plain • 401 B
ASCII text
        
            
1
/* Tiled window previews */
2
3
@use "../../../../theme-color";
4
5
.tile-preview {
6
border: 1px solid theme-color.primary(theme-color.$on-dark);
7
background-color: rgba(theme-color.primary(theme-color.$on-dark), .3);
8
}
9
10
.tile-preview-left.on-primary {
11
border-radius: 0;
12
}
13
14
.tile-preview-right.on-primary {
15
border-radius: 0;
16
}
17
18
.tile-preview-left.tile-preview-right.on-primary {
19
border-radius: 0;
20
}
21