e9d71bfbe4
bootstrap still held back
27 lines
523 B
Svelte
27 lines
523 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
</script>
|
|
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
div {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
@media only screen and (max-device-width: 480px) and (orientation: portrait) {
|
|
font-size: smaller;
|
|
}
|
|
|
|
& > :global(*) {
|
|
padding-left: 0.5em;
|
|
padding-right: 0.5em;
|
|
}
|
|
}
|
|
</style>
|