Make editing the biography take the entire tab and tweak rendering

This commit is contained in:
Carlos Fernandez 2025-11-29 17:03:28 -05:00
parent 630ba5ab7d
commit 6d4cb2c538
2 changed files with 23 additions and 4 deletions

View file

@ -16,5 +16,24 @@
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
}
.biography-section {
prose-mirror {
--min-height: 50px;
}
prose-mirror.inactive .editor-content {
position: relative;
}
}
&:has(.prosemirror.active) {
.biography-section {
flex: 1;
&:not(:has(prose-mirror.active)) {
display: none;
}
}
}
}
}