Merge branch '231-identity-pop-over-cuts-off' into 'dev'

Identity popover cut off fixed

See merge request keanuapp/keanuapp-weblite!35
This commit is contained in:
N Pex 2022-01-31 14:42:25 +00:00
commit f354e10aa7

View file

@ -3,7 +3,6 @@
v-model="showDialog"
content-class="profile-info-popup"
class="ma-0 pa-0"
:width="$vuetify.breakpoint.smAndUp ? '940px' : '95%'"
>
<v-card flat>
<v-card-text>
@ -149,6 +148,8 @@ export default {
left: 10px;
}
border-radius: 40px;
width: 95%;
&::before {
content: "▲";
position: fixed;
@ -183,12 +184,18 @@ export default {
font-size: 13 * $chat-text-size !important;
}
}
@media #{map-get($display-breakpoints, 'sm-and-up')} {
width: 70%;
}
@media #{map-get($display-breakpoints, 'lg-and-up')} {
overflow: unset;
width: $main-desktop-width;;
position: absolute;
top: 70px;
right: unset;
width: $dialog-desktop-width;
&::before {
position: absolute;