Improve repo structure

This commit is contained in:
Paul-Henri Froidmont 2021-07-16 21:09:58 +02:00
parent fdc4148540
commit 62f200ba03
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
294 changed files with 499 additions and 516 deletions

View file

@ -0,0 +1,59 @@
// on screen preview of windows tiling placement
.tile-preview {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
}
.tile-hud {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
&:top {
border-top-width: 0;
border-radius: 0 0 10px 10px;
}
&:bottom {
border-bottom-width: 0;
border-radius: $roundness $roundness 0 0;
}
&:left {
border-left-width: 0;
border-radius: 0 10px 10px 0;
}
&:right {
border-right-width: 0;
border-radius: 10px 0 0 10px;
}
&:top-left {
border-top-width: 0;
border-left-width: 0;
border-radius: 0 0 10px 0;
}
&:top-right {
border-top-width: 0;
border-right-width: 0;
border-radius: 0 0 0 10px;
}
&:bottom-left {
border-bottom-width: 0;
border-left-width: 0;
border-radius: 0 10px 0 0;
}
&:bottom-right {
border-bottom-width: 0;
border-right-width: 0;
border-radius: 10px 0 0 0;
}
}