Skip to content

Commit 9c7bd22

Browse files
authored
Merge pull request #93 from celenium-io/dev
fix (LeftSidebar): x overflow && fix light node modal typo
2 parents 3f35050 + 12d8706 commit 9c7bd22

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

components/LeftSidebar.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,13 @@ const handleNavigate = (url) => {
176176
</Flex>
177177
</NuxtLink>
178178

179-
<Button v-if="isMobile()" @click="appStore.showSidebar = !appStore.showSidebar" type="secondary" size="mini" :class="$style.close_btn">
179+
<Button
180+
v-if="isMobile()"
181+
@click="appStore.showSidebar = !appStore.showSidebar"
182+
type="secondary"
183+
size="mini"
184+
:class="$style.close_btn"
185+
>
180186
<Icon name="close" size="14" color="primary" />
181187
</Button>
182188
</Flex>
@@ -288,6 +294,7 @@ const handleNavigate = (url) => {
288294
.wrapper {
289295
position: sticky;
290296
top: 0;
297+
overflow-x: auto;
291298
292299
user-select: none;
293300

components/modals/LightNodeModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ watch(
555555
<Text size="12" weight="600" color="primary">Caution about running a node on a mobile</Text>
556556
<Text size="12" weight="500" color="tertiary" height="140">
557557
Running a light node on mobile devices may affect the performance of your device and cause your phone to
558-
discharge quickly. Therefore, a node can be started with the charger connected.
558+
discharge quickly.
559559
</Text>
560560
</Flex>
561561

0 commit comments

Comments
 (0)