Skip to content

Commit 4d12d0c

Browse files
vincentwoobryk
authored andcommitted
Give logs view sane line spacing (#1077)
* Give logs view sane line spacing This is what logs look like now: https://www.dropbox.com/s/bwbxytipqitwwm2/Screenshot%202016-07-27%2020.52.59.png?dl=0 This is what they look like after this change: https://www.dropbox.com/s/85n2x7jn6o1tlrh/Screenshot%202016-07-27%2020.53.22.png?dl=0 * fix lint * restructure * fix lint * fiiineee * fix lint * use @extend
1 parent ece3fd9 commit 4d12d0c

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/app/frontend/logs/logs.scss

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,18 @@ $logs-color-white: #fff;
2727
color: $logs-color-black;
2828
}
2929

30-
.kd-logs-element-compact {
31-
font-size: $caption-font-size-base;
32-
padding: 0 (2 * $baseline-grid);
33-
word-wrap: break-word;
34-
}
35-
3630
.kd-logs-element {
3731
font-size: $body-font-size-base;
3832
padding: 0 (2 * $baseline-grid);
3933
word-wrap: break-word;
34+
35+
pre {
36+
margin: 0;
37+
}
38+
}
39+
40+
.kd-logs-element-compact {
41+
@extend .kd-logs-element;
42+
43+
font-size: $caption-font-size-base;
4044
}

0 commit comments

Comments
 (0)