workaround for full height containers

This commit is contained in:
Pavel Laptev 2024-01-23 17:21:21 +01:00 committed by GitButler
parent ea23149f5f
commit 2aa4ff7169
2 changed files with 9 additions and 1 deletions

View File

@ -303,6 +303,9 @@
}
.branch-card__dropzone-wrapper {
display: flex;
flex-direction: column;
flex: 1;
position: relative;
}
@ -311,13 +314,17 @@
display: flex;
flex-direction: column;
gap: var(--space-4);
padding: var(--space-8);
padding: var(--space-12);
}
.first-child {
/* padding-left: var(--space-16); */
}
.card {
flex: 1;
}
.new-branch__content {
display: flex;
flex-direction: column;

View File

@ -112,6 +112,7 @@
<style lang="postcss">
.branch-files {
flex: 1;
background: var(--clr-theme-container-light);
border-radius: var(--radius-m) var(--radius-m) 0 0;
}