Skip to content

Commit 884f05c

Browse files
committed
[native] fix(NativeApp): Don't use css inset property
Signed-off-by: Marcel Klehr <[email protected]>
1 parent d27ee56 commit 884f05c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/ui/NativeApp.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ body {
5757
html {
5858
font-size: 0.45cm !important;
5959
position: absolute;
60-
inset: 0;
60+
top: 0;
61+
left: 0;
62+
bottom: 0;
63+
right: 0;
6164
overflow: hidden;
6265
}
6366
.v-navigation-drawer {
@@ -67,7 +70,10 @@ html {
6770
6871
.native-scroll-container {
6972
position: absolute;
70-
inset: 0;
73+
top: 0;
74+
left: 0;
75+
bottom: 0;
76+
right: 0;
7177
overflow: hidden;
7278
7379
.v-app-bar {

0 commit comments

Comments
 (0)