Skip to content

Commit 386602a

Browse files
committed
top padding for all tab-content
1 parent 8c47ca7 commit 386602a

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/stylesheet.scss

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,16 @@ ul,
6767
transform: rotate(90deg);
6868
}
6969

70-
71-
7270
.remove-margin {
7371
margin: 0px;
7472
}
7573

76-
.filebox {
77-
background-color: #f5f2f0;
74+
.tab-content {
75+
padding-top: ($spacer * .5) !important;
7876
}
7977

80-
.filebox h3 {
81-
margin-top: 0px;
78+
.filebox {
79+
background-color: #f5f2f0;
8280
}
8381

8482
.filebox ul {

src/ui/panel/Panel.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ let make = (~state, ~dispatch) => {
4343
let current = state.selected_panel;
4444
<div className="d-flex flex-column border-right border-left h-25">
4545
{make_nav_pills(current, dispatch)}
46-
<div className="tab-content overflow-auto pt-2">
46+
<div className="tab-content overflow-auto">
4747
<div className="tab-pane active">
4848
{switch (current) {
4949
| Some(Warnings) => <WarningView warnings={state.warnings} dispatch />

0 commit comments

Comments
 (0)