css: add figure as a horizontal scroller

This commit is contained in:
Gabriel Fontes
2022-08-21 14:25:21 -03:00
parent 18c4bae287
commit ef9d55cff9
+13
View File
@@ -135,6 +135,19 @@ details {
}
}
// Make figure a scroller (stolen from picocss)
figure {
display: block;
margin: 0;
padding: 0;
overflow-x: auto;
figcaption {
padding: 1em;
color: var(--text-muted);
}
}
// ===================
// More specific stuff
// ===================