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:
commit
f354e10aa7
1 changed files with 8 additions and 1 deletions
|
|
@ -3,7 +3,6 @@
|
||||||
v-model="showDialog"
|
v-model="showDialog"
|
||||||
content-class="profile-info-popup"
|
content-class="profile-info-popup"
|
||||||
class="ma-0 pa-0"
|
class="ma-0 pa-0"
|
||||||
:width="$vuetify.breakpoint.smAndUp ? '940px' : '95%'"
|
|
||||||
>
|
>
|
||||||
<v-card flat>
|
<v-card flat>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
|
|
@ -149,6 +148,8 @@ export default {
|
||||||
left: 10px;
|
left: 10px;
|
||||||
}
|
}
|
||||||
border-radius: 40px;
|
border-radius: 40px;
|
||||||
|
width: 95%;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: "▲";
|
content: "▲";
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
@ -183,12 +184,18 @@ export default {
|
||||||
font-size: 13 * $chat-text-size !important;
|
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')} {
|
@media #{map-get($display-breakpoints, 'lg-and-up')} {
|
||||||
overflow: unset;
|
overflow: unset;
|
||||||
width: $main-desktop-width;;
|
width: $main-desktop-width;;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 70px;
|
top: 70px;
|
||||||
right: unset;
|
right: unset;
|
||||||
|
width: $dialog-desktop-width;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue