pico/scss/layout/_scroller.scss
2022-10-22 13:11:51 +07:00

19 lines
312 B
SCSS

@use "../settings" as *;
/**
* Horizontal scroller (<figure>)
*/
// Wrapper to make any content responsive across all viewports
figure {
display: block;
margin: 0;
padding: 0;
overflow-x: auto;
figcaption {
padding: calc(var(#{$}spacing) * 0.5) 0;
color: var(#{$}muted-color);
}
}