19 lines
304 B
Text
19 lines
304 B
Text
![]() |
.Aligner {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.Aligner-item {
|
||
|
max-width: 50%;
|
||
|
}
|
||
|
|
||
|
.Aligner-item--top {
|
||
|
align-self: flex-start;
|
||
|
}
|
||
|
|
||
|
.Aligner-item--bottom {
|
||
|
align-self: flex-end;
|
||
|
}
|
||
|
|
||
|
/* From https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/ */
|