mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
15 lines
245 B
SCSS
Executable file
15 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
|