Browse Source

Add more opinionated container styles to make layout out components even easier

pull/4023/head
Andrew Kingston 5 years ago
parent
commit
20e568baea
  1. 8
      packages/standard-components/src/Container.svelte

8
packages/standard-components/src/Container.svelte

@ -52,11 +52,17 @@
flex-direction: column;
}
/* Grow containers inside a row need 0 width 0 so that they ignore content */
/* The nested selector for data-type is the wrapper around all components */
.direction-row :global(> [data-type="component"] > .size-grow) {
width: 0;
}
.size-shrink {
flex: 0 1 auto;
}
.size-grow {
flex: 1 1 0;
flex: 1 1 auto;
}
.direction-row.hAlign-left,

Loading…
Cancel
Save