changed the styling of the console

This commit is contained in:
Jesse James Isler 2022-03-28 14:20:51 +02:00
parent e3335b0818
commit 386ce2f23f
1 changed files with 9 additions and 2 deletions

View File

@ -12,8 +12,15 @@ html {
backdrop-filter: blur(7px) !important;
}
pre code {
background-color: #eee;
color: #fff;
background-color: #ccc;
border: 1px solid #999;
display: block;
padding: 20px;
padding: 5px;
overflow-x: auto;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}