74a2f16501
* feat: Show active file name when saving to current file * Make requested changes * More changes
22 lines
360 B
SCSS
22 lines
360 B
SCSS
.excalidraw {
|
|
.ActiveFile {
|
|
.ActiveFile__fileName {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
span {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
width: 9.3em;
|
|
}
|
|
|
|
svg {
|
|
width: 1.15em;
|
|
margin-inline-end: 0.3em;
|
|
transform: scaleY(0.9);
|
|
}
|
|
}
|
|
}
|
|
}
|