11 lines
216 B
CSS
11 lines
216 B
CSS
.page {
|
|
position: relative;
|
|
height: calc(100vh - 103px);
|
|
max-height: -webkit-fill-available;
|
|
flex: auto;
|
|
justify-content: center;
|
|
display: flex;
|
|
grid-template-rows: 1fr 96px;
|
|
justify-items: center;
|
|
}
|