Merge pull request #20761 from calixteman/tweak_dims

Tweak few elements: dimensions and the checkbox color in the new sidebar
This commit is contained in:
Tim van der Meij 2026-03-01 20:01:07 +01:00 committed by GitHub
commit e0ea84fdac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -549,7 +549,7 @@
align-items: center; align-items: center;
justify-content: space-evenly; justify-content: space-evenly;
padding: 20px 32px; padding: 20px 32px;
gap: 20px; gap: 44px;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
@ -610,12 +610,15 @@
} }
> .thumbnail { > .thumbnail {
--input-dim: 16px;
--gap-between-input-and-thumbnail: 16px;
display: inline-flex; display: inline-flex;
justify-content: center; justify-content: flex-end;
align-items: center; align-items: center;
flex-direction: row-reverse; flex-direction: row-reverse;
gap: 16px; gap: var(--gap-between-input-and-thumbnail);
width: auto; width: 190px;
height: auto; height: auto;
position: relative; position: relative;
scroll-margin-top: 20px; scroll-margin-top: 20px;
@ -663,6 +666,9 @@
> input { > input {
margin: 0; margin: 0;
width: var(--input-dim);
height: var(--input-dim);
accent-color: var(--indicator-color);
} }
> .thumbnailImageContainer { > .thumbnailImageContainer {