From 497a6c983d910e302649df2d394df625ac2baaed Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 16 Oct 2025 09:58:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E5=85=AC=E7=94=A8hea?= =?UTF-8?q?der=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/App.vue b/App.vue index fb9d165..5258844 100644 --- a/App.vue +++ b/App.vue @@ -68,7 +68,7 @@ } .container { color: #333; - padding: 12rpx; + padding: 0rpx 12rpx; } .uni-forms-item { margin-bottom: 8rpx !important; @@ -105,4 +105,22 @@ display: flex; justify-content: space-between; } + .header_sticky { + position: -webkit-sticky; + position: sticky; + top: 90rpx; + z-index: 10; + background-color: white; + display: flex; + align-items: center; + justify-content: space-between; + } + .header_fixed { + position: fixed; + width: 100%; + top: env(safe-area-inset-top)px; + z-index: 1; + background-color: white; + } +