1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 07:28:43 +01:00

19 lines
355 B
HTML
Raw Normal View History

2018-01-12 18:57:50 -08:00
<div class="free-text">
<slot></slot>
</div>
<style>
:global(.free-text) {
margin: 20px;
}
:global(.free-text p) {
2018-01-14 21:41:19 -08:00
margin: 30px 0;
2018-01-12 18:57:50 -08:00
}
2018-01-20 15:37:40 -08:00
:global(.free-text) {
overflow-y: auto; /* fixes weird iOS Safari bug where scrolling gets stuck */
}
@media (max-width: 767px) {
:global(.free-text) {
margin: 10px;
}
}
2018-01-12 18:57:50 -08:00
</style>