Skip to content

Commit

Permalink
review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMcA committed Dec 12, 2024
1 parent 55e0881 commit d67b6e6
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
2 changes: 1 addition & 1 deletion client/src/playground/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class PlayConsole extends LitElement {

render() {
return html`
<span>Console</span>
<span class="header">Console</span>
<ul>
${this.vConsole.map(({ message }) => {
return html`
Expand Down
49 changes: 27 additions & 22 deletions client/src/playground/console.scss
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
:host {
display: flex;
flex-direction: column;
font-size: smaller;
font-size: var(--type-smaller-font-size);
margin: 0;
width: 100%;
}

> span {
background-color: var(--code-background-inline);
font-weight: 600;
text-align: center;
width: 100%;
}
.header {
background-color: var(--code-background-inline);
font-weight: 600;
text-align: center;
width: 100%;
}

ul {
background-color: var(--code-background-inline);
height: 6rem;
list-style: none;
margin: 0;
max-height: 6rem;
overflow: auto;
padding: 0;
width: 100%;
ul {
background-color: var(--code-background-inline);
height: 6rem;
list-style: none;
margin: 0;
max-height: 6rem;
overflow: auto;
padding: 0;
width: 100%;
}

li {
padding: 0 1rem;
li {
padding: 0 1rem;

&::before {
content: ">";
}
}
&::before {
content: ">";
}
}

code {
font-family: var(--font-code);
tab-size: 4;
}

0 comments on commit d67b6e6

Please sign in to comment.