Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion components/LeftSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,13 @@ const handleNavigate = (url) => {
</Flex>
</NuxtLink>

<Button v-if="isMobile()" @click="appStore.showSidebar = !appStore.showSidebar" type="secondary" size="mini" :class="$style.close_btn">
<Button
v-if="isMobile()"
@click="appStore.showSidebar = !appStore.showSidebar"
type="secondary"
size="mini"
:class="$style.close_btn"
>
<Icon name="close" size="14" color="primary" />
</Button>
</Flex>
Expand Down Expand Up @@ -288,6 +294,7 @@ const handleNavigate = (url) => {
.wrapper {
position: sticky;
top: 0;
overflow-x: auto;

user-select: none;

Expand Down
2 changes: 1 addition & 1 deletion components/modals/LightNodeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ watch(
<Text size="12" weight="600" color="primary">Caution about running a node on a mobile</Text>
<Text size="12" weight="500" color="tertiary" height="140">
Running a light node on mobile devices may affect the performance of your device and cause your phone to
discharge quickly. Therefore, a node can be started with the charger connected.
discharge quickly.
</Text>
</Flex>

Expand Down