From b10257772eb05380de95f54da4135220a8bf3f63 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 9 Sep 2026 06:04:12 +0300 Subject: [PATCH] src/styles: increase thumbnail maxwidth Increase thumbnail maxwidth from 125px to 175px. Ideally the actual width of the thumbnail image itself is twice the size here so that it is scaled in CSS and looks more sharp. --- src/styles/_custom_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_custom_variables.scss b/src/styles/_custom_variables.scss index 0a8a6757fb1..2ea01cb2882 100644 --- a/src/styles/_custom_variables.scss +++ b/src/styles/_custom_variables.scss @@ -98,7 +98,7 @@ --ds-edit-item-metadata-field-width: 190px; --ds-edit-item-language-field-width: 43px; - --ds-thumbnail-max-width: 125px; + --ds-thumbnail-max-width: 175px; --ds-thumbnail-placeholder-background: #{$gray-100}; --ds-thumbnail-placeholder-border: 1px solid #{$gray-300}; --ds-thumbnail-placeholder-color: #{lighten($gray-800, 7%)};