🐛 Fix typography dropdown menus being clipped out in the left sidebar

Co-authored-by: Belén Albeza <belen@hey.com>
This commit is contained in:
Eva 2024-01-15 13:59:55 +01:00 committed by Alonso Torres
parent a84b23168d
commit 5cfc135791
18 changed files with 118 additions and 123 deletions

View file

@ -7,28 +7,15 @@
.tab-container {
display: grid;
grid-template-rows: auto 1fr;
grid-template-columns: 100%;
grid-template-rows: $s-32 1fr;
height: 100%;
.tab-container-content {
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
}
.tab-element {
flex: 1;
height: 100%;
}
}
.tab-container-tabs {
display: flex;
align-items: center;
flex-direction: row;
gap: $s-2;
height: $s-32;
border-radius: $br-8;
background: var(--color-background-secondary);
padding: $s-2;
@ -72,6 +59,7 @@
}
}
}
.collapse-sidebar {
@include flexCenter;
@include buttonStyle;
@ -103,3 +91,10 @@
}
}
}
.tab-container-content {
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
}