[Refactor] Move to src-ui/views and src-ui/logics structure.
This commit is contained in:
28
src-ui/views/app/main_page/MainPage.module.scss
Normal file
28
src-ui/views/app/main_page/MainPage.module.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
.page {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
overflow: hidden;
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.show_config.main_page {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
|
||||
.show_main.main_page {
|
||||
transform: translateY(0%);
|
||||
}
|
||||
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
background-color: var(--dark_888_color);
|
||||
position: relative;
|
||||
}
|
||||
Reference in New Issue
Block a user