mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
* feat: support avatarURLfor collaborators * fix * better avatars :) * use position fixed for tooltips so it renders correctly when offsets updated * update docs * Update src/excalidraw-app/collab/CollabWrapper.tsx * rename avatarUrl to src
22 lines
381 B
SCSS
22 lines
381 B
SCSS
@import "../css/variables.module";
|
|
|
|
.excalidraw {
|
|
.Avatar {
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
border-radius: 1.25rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: $oc-white;
|
|
cursor: pointer;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
|
|
&-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 100%;
|
|
}
|
|
}
|
|
}
|