Skip to content

Commit fdcec96

Browse files
committed
Make some height adjustments to editor
1 parent 15e1fbb commit fdcec96

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

app/css/index.css

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,20 @@ span.title {
8585
}
8686
.editor {
8787
width: 50rem;
88-
padding-top: 3rem;
89-
background-color: rgba(0, 0, 0, 0.05);
88+
padding-top: 2rem;
89+
background-color: rgba(0, 0, 0, 0.1);
9090
}
9191
.ui.piled.segment {
92-
margin: 1rem 2rem 0 2rem;
93-
height: 42rem;
92+
margin: 1rem 2rem 1rem 2rem;
93+
height: 45rem;
9494
z-index: 10;
9595
}
9696
.log-title {
9797
margin: 0 0 0.5rem 0;
9898
}
99+
.row {
100+
margin-top: 2rem;
101+
}
99102
.last-updated {
100103
float: right;
101104
color: rgba(0, 0, 0, 0.7);

app/css/index.less

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Editor
66
@saveStatusColor: #349160;
77
@emptyLogsMessageColor: rgba(96, 96, 96, 0.87);
8-
@editorBackgroundColor: rgba(0, 0, 0, 0.05);
8+
@editorBackgroundColor: rgba(0, 0, 0, 0.10);
99
@timeColor: rgba(0, 0, 0, 0.7);
1010

1111

@@ -117,20 +117,24 @@ span.title {
117117

118118
.editor {
119119
width: 50rem;
120-
padding-top: 3rem;
120+
padding-top: 2rem;
121121
background-color: @editorBackgroundColor;
122122
}
123123

124124
.ui.piled.segment {
125-
margin: 1rem 2rem 0 2rem;
126-
height: 42rem;
125+
margin: 1rem 2rem 1rem 2rem;
126+
height: 45rem;
127127
z-index: 10;
128128
}
129129

130130
.log-title {
131131
margin: 0 0 0.5rem 0;
132132
}
133133

134+
.row {
135+
margin-top: 2rem;
136+
}
137+
134138
.last-updated {
135139
float: right;
136140
color: @timeColor;

0 commit comments

Comments
 (0)