mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:13:09 +02:00
fix: the avatar in the title bar is clipped
This commit is contained in:
parent
13a406b6cf
commit
14977ed2b7
1 changed files with 9 additions and 8 deletions
|
@ -252,17 +252,18 @@ onUnmounted(() => {
|
|||
}
|
||||
|
||||
.titleAvatarContainer {
|
||||
overflow: hidden;
|
||||
padding: 8px 0;
|
||||
$size: 32px;
|
||||
contain: strict;
|
||||
overflow: clip;
|
||||
width: $size;
|
||||
height: $size;
|
||||
padding: 8px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.titleAvatar {
|
||||
$size: 32px;
|
||||
display: inline-block;
|
||||
width: $size;
|
||||
height: $size;
|
||||
vertical-align: bottom;
|
||||
margin: 0 8px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue