anki/ts/graphs/InputBox.svelte
2021-04-13 19:02:41 +10:00

24 lines
493 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<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>