fix: the avatar in the title bar is clipped
This commit is contained in:
parent
13a406b6cf
commit
14977ed2b7
|
@ -252,17 +252,18 @@ onUnmounted(() => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.titleAvatarContainer {
|
.titleAvatarContainer {
|
||||||
overflow: hidden;
|
$size: 32px;
|
||||||
padding: 8px 0;
|
contain: strict;
|
||||||
|
overflow: clip;
|
||||||
|
width: $size;
|
||||||
|
height: $size;
|
||||||
|
padding: 8px;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.titleAvatar {
|
.titleAvatar {
|
||||||
$size: 32px;
|
width: 100%;
|
||||||
display: inline-block;
|
height: 100%;
|
||||||
width: $size;
|
|
||||||
height: $size;
|
|
||||||
vertical-align: bottom;
|
|
||||||
margin: 0 8px;
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue