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 @@