Skip to content

Commit 0b4fcc7

Browse files
committed
Merge branch 'dev' into main
2 parents 86bcf7f + 3e85f78 commit 0b4fcc7

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sun Jun 25 20:35:58 AMT 2023
2-
VERSION_CODE=24
1+
#Tue Jun 27 13:08:24 AMT 2023
2+
VERSION_CODE=28

apps/client/src/layouts/PagesLayout/MainContent/DisplayUI/DisplayHorizontalPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const isEmpty = computed(
6969
pointer-events: auto;
7070
cursor: pointer;
7171
72-
max-width: calc(100vw / 3.5);
72+
max-width: min(120px, 100vw / 4);
7373
}
7474
7575
.group-title {

apps/client/src/layouts/PagesLayout/MainContent/DisplayUI/DisplayHorizontalPath.vue

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
<template>
22
<div
3+
class="horizontal-path"
34
style="
45
position: absolute;
56
left: 12px;
67
right: 12px;
7-
top: 7px;
8+
top: 8px;
89
font-size: 13px;
910
white-space: nowrap;
1011
1112
text-align: left;
1213
direction: rtl;
14+
15+
overflow: scroll;
1316
"
1417
>
15-
<div style="display: inline-block">
16-
<div style="display: flex; gap: 4px; direction: ltr">
18+
<div style="display: inline-block; pointer-events: auto">
19+
<div style="display: flex; gap: 5px; direction: ltr">
1720
<template
1821
v-for="(pageId, index) in internals.pages.react.pathPageIds.slice(
1922
0,
@@ -38,3 +41,15 @@
3841
<script setup lang="ts">
3942
import DisplayHorizontalPage from './DisplayHorizontalPage.vue';
4043
</script>
44+
45+
<style scoped lang="scss">
46+
/* Hide scrollbar */
47+
48+
.horizontal-path {
49+
-ms-overflow-style: none;
50+
scrollbar-width: none;
51+
}
52+
.horizontal-path::-webkit-scrollbar {
53+
display: none;
54+
}
55+
</style>

apps/client/src/layouts/PagesLayout/MainContent/DisplayUI/DisplayLeftBtns.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function goForward() {
113113
position: absolute;
114114
115115
left: 12px;
116-
top: 53px;
116+
top: 55px;
117117
118118
display: flex;
119119
flex-direction: column;

apps/client/src/layouts/PagesLayout/MainContent/DisplayUI/DisplayRightBtns.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const page = computed(() => internals.pages.react.page);
8787
position: absolute;
8888
8989
right: 12px;
90-
top: 53px;
90+
top: 55px;
9191
9292
display: flex;
9393
flex-direction: column;

0 commit comments

Comments
 (0)