Socialify

Folder ..

Viewing _stacks.scss
15 lines (14 loc) • 245.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// 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