Merge pull request #1388 from thecodingmachine/BackToLinePopUp

Update escapeHtml
This commit is contained in:
David Négrier 2021-08-23 11:25:04 +02:00 committed by GitHub
commit 7fdbcde71c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -25,7 +25,7 @@ export class HtmlUtils {
}
public static escapeHtml(html: string): string {
const text = document.createTextNode(html.replace(/(\r\n|\r|\n)/g, "<br/>"));
const text = document.createTextNode(html);
const p = document.createElement("p");
p.appendChild(text);
return p.innerHTML;

View file

@ -1085,10 +1085,14 @@ div.action.danger p.action-body{
text-align: left;
color: white;
}
.popUpElement div {
.popUpElement div{
font-family: 'Press Start 2P';
font-size: 10px;
background-color: #727678;
white-space: pre-line;
}
.popUpElement .nes-container{
padding: 1rem 1rem;
}
.popUpElement button {