mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-08 23:08:14 -07:00
15 lines
245 B
SCSS
15 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
|