diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-13 13:41:36 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-13 13:41:36 +0100 |
| commit | 7c500597a37db933c9188d67bf8a9d4dbd13e0b7 (patch) | |
| tree | e3be5418d7b0defbfc472ce2b6a73cb573a329ca | |
| parent | de427cacdcf08df67819de8d19a3e09c9706f3e7 (diff) | |
always set width and height on svg on my courses as well to prevent plugin svgs from growing too large, fixes #6358
Closes #6358
Merge request studip/studip!4818
| -rw-r--r-- | resources/assets/stylesheets/scss/my_courses.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/assets/stylesheets/scss/my_courses.scss b/resources/assets/stylesheets/scss/my_courses.scss index ddd1014..01048ca 100644 --- a/resources/assets/stylesheets/scss/my_courses.scss +++ b/resources/assets/stylesheets/scss/my_courses.scss @@ -37,6 +37,8 @@ $icon-padding: 3px; } svg { + height: var(--icon-size-default); + width: var(--icon-size-default); vertical-align: bottom; } |
