1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-17 02:51:41 +04:00

Migrate SASS to module API (#2477)

This commit is contained in:
Paweł Kuna
2025-09-12 17:48:31 +02:00
committed by GitHub
parent 212d560a87
commit 736e60408b
21 changed files with 392 additions and 45 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
@use "sass:map";
$apps: (
"apple",
"discord",
@@ -47,6 +49,6 @@ $apps: (
@each $flag-size, $size in $flag-sizes {
.social-#{$flag-size} {
height: map-get($size, size);
height: map.get($size, size);
}
}