fix: schoolbag, strengths and trope question tab editor content block had height of 0px

This commit is contained in:
Joscha Maier
2024-12-02 19:00:59 +01:00
parent 6dc5149c3b
commit bde6ffca74
6 changed files with 28 additions and 11 deletions

View File

@ -3,10 +3,15 @@
}
.sheet-header {
@include flexbox(row, wrap, flex-start); // Use a mixin for flexbox
flex: 0 auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: flex-start; // Use a mixin for flexbox
flex: 0 1 auto;
overflow: hidden;
margin-bottom: 10px;
height: 110px;
.profile-img {
flex: 0 0 100px;