MainPage.scss
879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#Main{
margin: 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.Main-header{
display: flex;
flex-direction: row;
height: 30%;
.title{
display: flex;
justify-content: center;
width: 90%;
height: 50px;
.h1{
font-size: 40px;
color: white;
font-weight: bold;
text-align: center;
margin-bottom: 60px;
}
}
.None-title{
display: flex;
justify-content: right;
width: 10%;
}
}
.Main-body{
display: flex;
flex-direction: row;
width: 100%;
height: 100vh;
.contents{
display: flex;
justify-content: center;
align-items: center;
width: 70%;
}
.user{
display: flex;
justify-content: center;
align-items: center;
width: 30%;
}
}
}