12 lines
362 B
Svelte
12 lines
362 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">
|
||
|
:global([data-editor-shrink]:not([data-editor-shrink="false"])) {
|
||
|
max-width: var(--editor-shrink-max-width);
|
||
|
max-height: var(--editor-shrink-max-height);
|
||
|
width: auto;
|
||
|
}
|
||
|
</style>
|