From 8945a3a2dd9745eb98de5c53f64c94a045d4b383 Mon Sep 17 00:00:00 2001 From: t0ng7u Date: Fri, 4 Jul 2025 23:49:34 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=BC=EF=B8=8F=20style(RatioSync):=20rem?= =?UTF-8?q?ove=20the=20useless=20`rounded-full`=20style?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/settings/ChannelSelectorModal.js | 1 - web/src/pages/Setting/Ratio/UpstreamRatioSync.js | 9 ++++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/web/src/components/settings/ChannelSelectorModal.js b/web/src/components/settings/ChannelSelectorModal.js index a09eff1c..72fdb970 100644 --- a/web/src/components/settings/ChannelSelectorModal.js +++ b/web/src/components/settings/ChannelSelectorModal.js @@ -197,7 +197,6 @@ const ChannelSelectorModal = forwardRef(({ value={searchText} onChange={setSearchText} showClear - className="!rounded-full" /> @@ -406,7 +406,7 @@ export default function UpstreamRatioSync(props) { placeholder={t('搜索模型名称')} value={searchKeyword} onChange={setSearchKeyword} - className="!rounded-full w-full sm:w-64" + className="w-full sm:w-64" showClear /> @@ -414,7 +414,7 @@ export default function UpstreamRatioSync(props) { placeholder={t('按倍率类型筛选')} value={ratioTypeFilter} onChange={setRatioTypeFilter} - className="!rounded-full w-full sm:w-48" + className="w-full sm:w-48" showClear onClear={() => setRatioTypeFilter('')} > @@ -704,7 +704,6 @@ export default function UpstreamRatioSync(props) { scroll={{ x: 'max-content' }} size='middle' loading={loading || syncLoading} - className="rounded-xl overflow-hidden" /> ); };