Skip to content

Commit 9529a98

Browse files
committed
making status bar more responsive on small displays
1 parent 3f80994 commit 9529a98

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/builtins/navbars/StatusBar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function submitWithdraw() {
5656
<img :src="api.getStaticUrl(appconfig.brandLogoFn)" width="90" class="dark:invert" />
5757
</a>
5858
<div class="flex items-center pt-1">
59-
<p class="text-xs text-left pl-2.5 text-foreground pt-2 sm:block hidden font-mono">
59+
<p class="text-xs text-left pl-2.5 text-foreground pt-2 @[600px]:block hidden font-mono">
6060
Study: {{ smilestore.config.codeName }}<br />Version: {{ smilestore.config.github.lastCommitHash
6161
}}{{
6262
appconfig.mode === 'testing' || appconfig.mode === 'development' || appconfig.mode === 'presentation'
@@ -73,7 +73,7 @@ function submitWithdraw() {
7373
<div class="flex gap-2">
7474
<Button variant="outline" size="xs" v-if="api.store.browserPersisted.consented" @click="toggleConsent()">
7575
<FAIcon icon="magnifying-glass" />
76-
View consent
76+
<span class="@[400px]:inline hidden">View consent</span>
7777
</Button>
7878
<Button
7979
variant="danger-light"
@@ -86,7 +86,7 @@ function submitWithdraw() {
8686
@click="toggleWithdraw()"
8787
>
8888
<FAIcon icon="circle-xmark" />
89-
Withdraw
89+
<span class="@[400px]:inline hidden">Withdraw</span>
9090
</Button>
9191
<Button variant="warning-light" size="xs" @click="toggleReport()" v-if="false">
9292
<FAIcon icon="hand" />

0 commit comments

Comments
 (0)