1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-25 04:51:39 +02:00
Files
bootstrap/scss/helpers/_stacks.scss
2025-09-19 09:21:06 -07:00

29 lines
513 B
SCSS

// stylelint-disable selector-no-qualifying-type
@layer helpers {
// scss-docs-start stacks
.hstack,
b-hstack {
display: flex;
flex-direction: row;
align-items: center;
align-self: stretch;
}
.hstack-start,
b-hstack[align="start"] {
display: flex;
flex-direction: row;
align-items: flex-start;
align-self: stretch;
}
.vstack,
b-vstack {
display: flex;
flex: 1 1 auto;
flex-direction: column;
align-self: stretch;
}
// scss-docs-end stacks
}