Skip to content

Commit 2155db4

Browse files
committed
dumper: fixed first line indentation [Closes #475]
1 parent 00563f3 commit 2155db4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Tracy/Bar/assets/bar.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -411,13 +411,13 @@ body#tracy-debug .tracy-panel { /* in popup window */
411411
}
412412

413413
#tracy-debug .tracy-dump-lq {
414-
margin-left: -1ex;
414+
margin-left: calc(-1ex - 1px);
415415
}
416416

417417
#tracy-debug div.tracy-dump-string:before {
418418
content: '';
419419
position: absolute;
420-
left: 3ex;
420+
left: calc(3ex - 1px);
421421
top: 1.5em;
422422
bottom: 0;
423423
border-left: 1px solid rgba(0, 0, 0, .1);

src/Tracy/Dumper/assets/dumper-dark.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
}
5959

6060
.tracy-dark .tracy-dump-lq {
61-
margin-left: -1ex;
61+
margin-left: calc(-1ex - 1px);
6262
}
6363

6464
.tracy-dark div.tracy-dump-string:before {
6565
content: '';
6666
position: absolute;
67-
left: 3ex;
67+
left: calc(3ex - 1px);
6868
top: 1.5em;
6969
bottom: 0;
7070
border-left: 1px solid rgba(255, 255, 255, .1);

src/Tracy/Dumper/assets/dumper-light.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
}
5959

6060
.tracy-light .tracy-dump-lq {
61-
margin-left: -1ex;
61+
margin-left: calc(-1ex - 1px);
6262
}
6363

6464
.tracy-light div.tracy-dump-string:before {
6565
content: '';
6666
position: absolute;
67-
left: 3ex;
67+
left: calc(3ex - 1px);
6868
top: 1.5em;
6969
bottom: 0;
7070
border-left: 1px solid rgba(0, 0, 0, .1);

0 commit comments

Comments
 (0)