29 lines
477 B
SCSS
29 lines
477 B
SCSS
.container {
|
|
display: flex;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
|
|
}
|
|
|
|
.container main {
|
|
flex: 1;
|
|
overflow: auto;
|
|
}
|
|
|
|
.loadingContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
min-height: 300px;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.loadingText {
|
|
margin-top: 16px;
|
|
color: #666;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|