Add tile component

This commit is contained in:
Stephan
2022-09-30 22:21:31 +02:00
parent 7d2af3abfe
commit a7c320e289
6 changed files with 141 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
@mixin highten {
border-radius: 32px;
box-shadow: 0 6px 13px rgba($color: #000000, $alpha: 0.25);
}
@mixin expand-bg($selector: ".background") {
&:hover #{$selector},
&:focus-visible #{$selector} {
transform: scale(1.1);
}
}
+6
View File
@@ -0,0 +1,6 @@
@mixin fullInset {
top: 0;
left: 0;
bottom: 0;
right: 0;
}