Add shadow effect

This commit is contained in:
2021-10-07 22:10:32 +02:00
parent eb6762b240
commit 37b70d0412

View File

@@ -26,4 +26,14 @@
0 4px 4px $shadow-color,
0 8px 8px $shadow-color,
0 16px 16px $shadow-color;
}
// Shadow: Small
.shadow-small {
$shadow-color: rgba(122, 93, 68, 0.05);
box-shadow:
0 1px 1px $shadow-color,
0 2px 2px $shadow-color,
0 4px 4px $shadow-color,
0 16px 16px $shadow-color;
}