base_ui/assets/common/vendors/bootstrap-5.3.3/helpers/_stacks.scss
2025-02-01 13:04:55 +03:30

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