From b5a6a35f645223c64c55ede9746015b6d359b8a2 Mon Sep 17 00:00:00 2001 From: toshikanneko Date: Tue, 15 Feb 2022 09:16:13 +0100 Subject: [PATCH] Adjust font size on upload page on mobile --- ui/component/common/icon-custom.jsx | 4 ++-- ui/scss/init/_gui.scss | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index 295eb6260..534c7e8db 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -1639,8 +1639,8 @@ export const icons = { width={props.size || '500'} height={props.size || '500'} fill="currentColor" - stroke="currentColor" - strokeWidth="0" + stroke="black" + strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" > diff --git a/ui/scss/init/_gui.scss b/ui/scss/init/_gui.scss index c1b86b4b7..50edf14ec 100644 --- a/ui/scss/init/_gui.scss +++ b/ui/scss/init/_gui.scss @@ -728,6 +728,16 @@ img { textarea#content_description:focus-visible { box-shadow: unset; } + + .section__actions { + .button { + .button__content { + .button__label { + font-size: var(--font-s); + } + } + } + } } }