Skip to content

Commit

Permalink
🔧 Fix UTF8 content on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
rogchap committed Jan 13, 2021
1 parent a66606a commit 7e35c91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/monaco.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}

.decor-header.in-payload::before {
content: "\00a0────────── in payload ──────────";
content: "\00a0\2014\2014\2014\2014\2014\2014\2014\2014\2014\2014\00a0in payload\00a0\2014\2014\2014\2014\2014\2014\2014\2014\2014\2014\2014";
}

.decor-header.out-payload::before {
content: "\00a0────────── out payload ─────────";
content: "\00a0\2014\2014\2014\2014\2014\2014\2014\2014\2014\2014\00a0out payload\00a0\2014\2014\2014\2014\2014\2014\2014\2014\2014\2014";
}

.decor-lines {
Expand All @@ -24,12 +24,12 @@

.decor-lines.in-payload::before {
color: var(--green-color);
content: "«";
content: "\00ab";
}

.decor-lines.out-payload::before {
color: var(--yellow-color);
content: "»";
content: "\00bb";
}

.decor-lines.error, .decor-lines-block.error {
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/Response.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
.container {
height: 100%;
user-select: text;
-webkit-user-select: text;
}
</style>
Expand Down

0 comments on commit 7e35c91

Please sign in to comment.