mirror of
https://github.com/picocss/pico.git
synced 2025-02-24 00:39:20 -05:00
This effectively make the SCSS code processable only by dart-sass because neither libsass (and node-sass in consequence) nor ruby-sass supports new syntax. See https://sass-lang.com/documentation/breaking-changes/slash-div for more information. This fixes #27
17 lines
275 B
SCSS
17 lines
275 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: calc(var(--spacing) * 0.5) 0;
|
|
color: var(--muted-color);
|
|
}
|
|
}
|