16 lines
284 B
CSS
16 lines
284 B
CSS
.page {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
main {
|
|
flex: 1;
|
|
background-color: #f7fbff;
|
|
width: 100%;
|
|
/*margin: 0.5rem 0.5rem 0.5rem 0.2rem;
|
|
border-radius: 1rem;
|
|
box-shadow: 3px 3px 10px 0px #D1D1D1;*/
|
|
}
|
|
.page {
|
|
flex-direction: row;
|
|
} |