gl-website-deployer/vendor/twbs/bootstrap/scss/helpers/_stacks.scss
2024-11-19 08:02:04 +01:00

16 lines
245 B
SCSS

// scss-docs-start stacks
.hstack {
display: flex;
flex-direction: row;
align-items: center;
align-self: stretch;
}
.vstack {
display: flex;
flex: 1 1 auto;
flex-direction: column;
align-self: stretch;
}
// scss-docs-end stacks