From ce554432c255d4ebb6e70aead3376432b4ac8f71 Mon Sep 17 00:00:00 2001 From: yml2213 Date: Sat, 23 May 2026 10:47:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=B8=83=E5=8A=9F=E8=83=BD=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=20=E5=AD=98=E8=8D=89=E9=9D=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mobile/MobileSellerListingCreateView.css | 21 +- .../mobile/MobileSellerListingCreateView.vue | 255 ++++++++++++++---- 2 files changed, 215 insertions(+), 61 deletions(-) diff --git a/frontend/src/views/mobile/MobileSellerListingCreateView.css b/frontend/src/views/mobile/MobileSellerListingCreateView.css index e985104..d992117 100644 --- a/frontend/src/views/mobile/MobileSellerListingCreateView.css +++ b/frontend/src/views/mobile/MobileSellerListingCreateView.css @@ -431,15 +431,32 @@ font-weight: 800; } +.publish-actions { + display: grid; + grid-template-columns: 92px minmax(0, 1fr); + gap: 10px; + margin-top: 8px; +} + +.reset-btn, .submit-btn { height: 44px; - margin-top: 8px; + width: 100%; border: none !important; - background: #ff6a00 !important; font-size: 15px; font-weight: 700; } +.reset-btn { + border: 1px solid #d7dce3 !important; + background: #fff !important; + color: #4b5563 !important; +} + +.submit-btn { + background: #ff6a00 !important; +} + .bottom-nav { position: fixed; left: 0; diff --git a/frontend/src/views/mobile/MobileSellerListingCreateView.vue b/frontend/src/views/mobile/MobileSellerListingCreateView.vue index ee6f1e2..3b4e21b 100644 --- a/frontend/src/views/mobile/MobileSellerListingCreateView.vue +++ b/frontend/src/views/mobile/MobileSellerListingCreateView.vue @@ -1,7 +1,7 @@