2021-05-26 01:21:33 +02:00
|
|
|
<div>
|
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
|
2021-04-13 11:02:41 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-03-21 13:47:52 +01:00
|
|
|
<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>
|