Skip to content

Commit fe681df

Browse files
Merge pull request #830 from Adamant-im/fix/samsung-height
fix: style issues
2 parents aafa7d7 + 8c3d01a commit fe681df

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ setLocale()
8686
@use '@/assets/styles/themes/adamant/_mixins.scss';
8787
8888
.application--main {
89-
overflow: hidden;
9089
flex: none;
9190
position: relative;
9291
height: calc(100vh - env(safe-area-inset-bottom) - env(safe-area-inset-top));

src/components/Chat/Chats.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ const loadChatsPaged = async () => {
256256
257257
loading.value = true
258258
try {
259-
await store.dispatch('chat/loadChatsPages')
259+
await store.dispatch('chat/loadChatsPaged')
260260
loading.value = false
261261
allowRetry.value = false
262262
} catch (err: unknown) {

src/views/AppSidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ onBeforeUnmount(() => {
274274
flex: 1 1 auto;
275275
overflow-y: auto;
276276
overflow-x: hidden;
277-
height: 100%;
277+
height: calc(100vh - var(--v-layout-bottom) - env(safe-area-inset-bottom) - env(safe-area-inset-top));
278278
width: calc(100% - var(--asideWidth));
279279
280280
&:deep(> .v-container) {

0 commit comments

Comments
 (0)