MainPage.scss
1.41 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#Main{
margin-top: 30px;
display: flex;
flex-direction: column;
.Main-header{
display: flex;
flex-direction: row;
.title{
display: flex;
justify-content: center;
width: 90%;
height: 60px;
.h1{
font-size: 60px;
font-weight: bold;
}
}
.None-title{
width: 10%;
.ui button{
height: 40px;
}
}
}
.Main-body{
display: flex;
flex-direction: row;
height: 100vh;
.contents-container{
display: flex;
justify-content: flex-start;
flex-direction: column;
width: 75%;
height: 100%;
border: 2px solid black;
.write-button{
height: 70px;
display: flex;
justify-content: center;
align-items: center;
}
.contents{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.Grid{
display: flex;
justify-content: center;
align-items: center;
}
}
}
.user-container{
display: flex;
flex-direction: column;
width: 25%;
border: 2px solid black;
.userInfo{
display: flex;
justify-content: center;
align-items: center;
}
.checkIssue-button{
height: 70px;
display: flex;
justify-content: center;
align-items: center;
}
}
}
}