11 lines
191 B
SCSS
11 lines
191 B
SCSS
.container {
|
|
display: flex;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
|
|
}
|
|
|
|
.container main {
|
|
flex: 1;
|
|
overflow: auto;
|
|
} |