11 lines
222 B
SCSS
11 lines
222 B
SCSS
.publish-status {
|
|
// fill the parent flex container
|
|
flex: 1 0 auto;
|
|
// be a flex container for children
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
.status {
|
|
text-align: center;
|
|
}
|
|
}
|