mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
19 lines
579 B
Svelte
19 lines
579 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(img) {
|
|
max-width: var(--editor-default-max-width);
|
|
max-height: var(--editor-default-max-height);
|
|
|
|
&:is([data-editor-shrink="true"]) {
|
|
max-width: var(--editor-shrink-max-width);
|
|
max-height: var(--editor-shrink-max-height);
|
|
}
|
|
&:is([data-editor-shrink="false"]) {
|
|
max-width: initial;
|
|
max-height: initial;
|
|
}
|
|
}
|
|
</style>
|