Skip to content
Snippets Groups Projects
Unverified Commit 14977ed2 authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by GitHub
Browse files

fix: the avatar in the title bar is clipped

parent 13a406b6
No related branches found
No related tags found
No related merge requests found
......@@ -252,17 +252,18 @@ onUnmounted(() => {
}
.titleAvatarContainer {
overflow: hidden;
padding: 8px 0;
}
.titleAvatar {
$size: 32px;
display: inline-block;
contain: strict;
overflow: clip;
width: $size;
height: $size;
vertical-align: bottom;
margin: 0 8px;
padding: 8px;
flex-shrink: 0;
}
.titleAvatar {
width: 100%;
height: 100%;
pointer-events: none;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment