mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
set min height for simulator graph (#4248)
This commit is contained in:
parent
a77ffbf4a5
commit
aae9f53e79
1 changed files with 2 additions and 1 deletions
|
@ -646,7 +646,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
|
||||
.svg-container {
|
||||
width: 100%;
|
||||
max-height: calc(100vh - 400px); /* Account for modal header, controls, etc */
|
||||
/* Account for modal header, controls, etc */
|
||||
max-height: max(calc(100vh - 400px), 200px);
|
||||
aspect-ratio: 600 / 250;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in a new issue