onFOSS.org/_sass/bootstrap/helpers/_stacks.scss

16 lines
245 B
SCSS
Raw Normal View History

2023-05-26 17:30:43 +02:00
// 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