feat: overflow-auto

This commit is contained in:
Lucas Larroche 2024-01-27 15:22:35 +07:00
parent d07f4b4960
commit f958109248
45 changed files with 296 additions and 2 deletions

View file

@ -0,0 +1,12 @@
@use "sass:map";
@use "../settings" as *;
@if map.get($modules, "layout/overflow-auto") and $enable-classes {
/**
* Overflow auto
*/
#{$parent-selector} .overflow-auto {
overflow: auto;
}
}