From d1db2be79c3ad935b67975cfa0c814ddafbb017b Mon Sep 17 00:00:00 2001 From: HimiCos Date: Thu, 30 Mar 2023 10:10:58 +0800 Subject: [PATCH] feat: Center the text in the options box in Settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 居中輸入框中的文本,並把右側加減按鈕去除 --- app/styles/globals.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/styles/globals.scss b/app/styles/globals.scss index d430d3e6b..8464daa14 100644 --- a/app/styles/globals.scss +++ b/app/styles/globals.scss @@ -186,6 +186,11 @@ input[type="text"] { color: var(--black); padding: 0 10px; max-width: 50%; + text-align: center; +} + +input[type=number]::-webkit-inner-spin-button{ + -webkit-appearance: none; } div.math {