feat: add van-safe-area-top class (#10356)

This commit is contained in:
neverland 2022-03-06 10:37:45 +08:00 committed by GitHub
parent 202efbbf85
commit 3d4247ab15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 7 deletions

View File

@ -82,8 +82,11 @@ export default defineComponent({
ref={navBarRef}
style={style}
class={[
bem({ fixed, 'safe-area-inset-top': props.safeAreaInsetTop }),
{ [BORDER_BOTTOM]: border },
bem({ fixed }),
{
[BORDER_BOTTOM]: border,
'van-safe-area-top': props.safeAreaInsetTop,
},
]}
>
<div class={bem('content')}>

View File

@ -74,7 +74,7 @@ test('should have safe-area-inset-top class when using safe-area-inset-top prop'
},
});
expect(wrapper.classes()).toContain('van-nav-bar--safe-area-inset-top');
expect(wrapper.classes()).toContain('van-safe-area-top');
});
test('should change z-index when using z-index prop', () => {

View File

@ -49,11 +49,15 @@ Add 1px border under the Retina screen for the element, based on a pseudo elemen
<div class="van-hairline--surround"></div>
```
### Safe Area Bottom
### Safe Area
Enable safe area inset bottom.
Enable safe area.
```html
<!-- top -->
<div class="van-safe-area-top"></div>
<!-- bottom -->
<div class="van-safe-area-bottom"></div>
```

View File

@ -47,11 +47,15 @@ Vant 中默认包含了一些常用样式,可以直接通过 className 的方
<div class="van-hairline--surround"></div>
```
### 底部安全区
### 安全区
为元素添加底部安全区适配。
为元素添加安全区适配。
```html
<!-- 顶部安全区 -->
<div class="van-safe-area-top"></div>
<!-- 底部安全区 -->
<div class="van-safe-area-bottom"></div>
```

View File

@ -26,6 +26,11 @@
.multi-ellipsis(3);
}
.van-safe-area-top {
padding-top: constant(safe-area-inset-top);
padding-top: env(safe-area-inset-top);
}
.van-safe-area-bottom {
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);