20 lines
361 B
Svelte
20 lines
361 B
Svelte
|
<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>
|
||
|
|
||
|
<div>
|
||
|
<slot />
|
||
|
</div>
|