mirror of
https://github.com/picocss/pico.git
synced 2025-04-22 09:26:14 -04:00
16 lines
267 B
SCSS
16 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);
|
|
}
|
|
}
|