pico/scss/layout/_scroller.scss

17 lines
276 B
SCSS
Raw Normal View History

2019-11-27 15:31:49 +07:00
/**
* Horizontal scroller (<figure>)
*/
// Wrapper to make any content responsive across all viewports
figure {
display: block;
2021-10-24 12:33:20 +07:00
margin: 0;
2019-11-27 15:31:49 +07:00
padding: 0;
overflow-x: auto;
figcaption {
padding: calc(var(--spacing) * 0.5) 0;
2021-07-02 16:54:41 +07:00
color: var(--muted-color);
2019-11-27 15:31:49 +07:00
}
}