13 lines
174 B
CSS
13 lines
174 B
CSS
.page {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
main {
|
|
flex: 1;
|
|
background-color: #808080;
|
|
width: 100%;
|
|
}
|
|
.page {
|
|
flex-direction: row;
|
|
} |