style : hide profile picture when on a mobile
This commit is contained in:
parent
f0346901df
commit
87242a3168
1 changed files with 7 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ const name = ref<string>(getUsername())
|
||||||
id="app-toolbar-title"
|
id="app-toolbar-title"
|
||||||
>
|
>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<q-avatar class="q-mt-xs">
|
<q-avatar class="q-mt-xs hideprofile">
|
||||||
<img src="../assets/profile.png" />
|
<img src="../assets/profile.png" />
|
||||||
</q-avatar>
|
</q-avatar>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -52,6 +52,12 @@ const name = ref<string>(getUsername())
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@media only screen and (max-width: 450px) {
|
||||||
|
.hideprofile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.cursor {
|
.cursor {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue