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

View File

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