pico/scss/layout/_scroller.scss
2019-12-03 09:51:37 +07:00

17 lines
267 B
SCSS

/**
* Horizontal scroller (<figure>)
*/
// Wrapper to make any content responsive across all viewports
figure {
display: block;
margin:0;
padding: 0;
overflow-x: auto;
figcaption {
padding: ($spacing-gutter/2) 0;
color: var(--muted-text);
}
}