Files
est-frame/node_modules/bootstrap/scss/helpers/_stacks.scss
2025-10-22 05:38:27 +00:00

16 lines
245 B
SCSS
Executable File

// 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