Skip to content

Commit

Permalink
fix: terminal border
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Lauber <jan.lauber@protonmail.ch>
  • Loading branch information
janlauber committed Jun 19, 2023
1 parent c084e3a commit d18d350
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
32 changes: 31 additions & 1 deletion kubelab-ui/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,37 @@ h1 {
margin-bottom: 0.5em;
}

li {
h2 {
font-size: 1.5rem;
font-weight: 600;
line-height: 1.25;
margin-bottom: 0.5em;
}

h3 {
font-size: 1.25rem;
font-weight: 600;
line-height: 1.25;
margin-bottom: 0.5em;
}

ul {
list-style: disc;
margin-bottom: 0.5em;
margin-left: 1.25em;
}

ul li {
margin-bottom: 0.25em;
}

ol {
list-style: decimal;
margin-bottom: 0.5em;
margin-left: 1.25em;
}

ol li {
margin-bottom: 0.25em;
}

Expand Down
2 changes: 0 additions & 2 deletions kubelab-ui/src/lib/components/Console.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@
div {
height: 100%;
width: 100%;
overflow: hidden;
border: 4px solid #fff;
}
div :global(.xterm) {
height: 100%;
Expand Down
1 change: 0 additions & 1 deletion kubelab-ui/src/routes/labs/[id]/[id]/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@
{checkIfExerciseIsDone(currentExercise.id) ? 'step-success' : ''}
"
>
<li />
</button>
{/each}
{/key}
Expand Down

0 comments on commit d18d350

Please sign in to comment.