feat: remove horizontal scroller

This commit is contained in:
Lucas Larroche 2024-01-27 14:38:20 +07:00
parent d1932eb325
commit d3455eaca1
125 changed files with 4 additions and 1679 deletions

View file

@ -1,21 +0,0 @@
@use "sass:map";
@use "../settings" as *;
@if map.get($modules, "layout/scroller") {
/**
* Horizontal scroller (<figure>)
*/
// Wrapper to make allow any content to be scrolled horizontally
#{$parent-selector} figure {
display: block;
margin: 0;
padding: 0;
overflow-x: auto;
figcaption {
padding: calc(var(#{$css-var-prefix}spacing) * 0.5) 0;
color: var(#{$css-var-prefix}muted-color);
}
}
}