-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMain.css
More file actions
68 lines (59 loc) · 1023 Bytes
/
Main.css
File metadata and controls
68 lines (59 loc) · 1023 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Global */
img {
max-width: 100%;
}
/* Main.js */
.layout {
height: 100vh;
}
.layout__logo {
height: 32px;
background: #444;
border-radius: 6px;
margin: 16px;
}
.layout__header {
background-color: #fff;
padding: 0;
}
.layout__header__right {
float: right;
}
.layout__header__right a {
display: flex;
align-items: center;
height: 64px;
padding: 0 20px;
color: #595959;
text-decoration: none;
}
.layout__header__right a:hover {
background-color: #fafafa;
}
.layout__header__right__name {
margin-left: 5px;
}
.layout__content {
margin: 24px 16px;
padding: 24;
background: #fff;
min-height: auto;
}
/* ArticleForm.js */
.article__cover-uploader > .ant-upload {
width: 100%;
}
.article__markdown-preview {
min-height: 430px;
max-height: 535px;
overflow-y: auto;
border: 1px solid #d9d9d9;
border-radius: 4px;
padding: 4px 11px;
word-break: break-all;
}
/* SettingPersonal.js 页面 CSS */
.avatar-uploader > .ant-upload {
width: 128px;
height: 128px;
}