From 7c500597a37db933c9188d67bf8a9d4dbd13e0b7 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms Date: Fri, 13 Mar 2026 13:41:36 +0100 Subject: 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 --- resources/assets/stylesheets/scss/my_courses.scss | 2 ++ 1 file changed, 2 insertions(+) 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; } -- cgit v1.0