Skip to content

Commit

Permalink
Make changes to outputWindow css
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelinglow committed Nov 13, 2024
1 parent 84aa032 commit d4deb25
Showing 1 changed file with 28 additions and 34 deletions.
62 changes: 28 additions & 34 deletions frontend/src/components/styles/OutputWindow.css
Original file line number Diff line number Diff line change
@@ -1,34 +1,28 @@
.output-window {
width: 100%;
}

.output-title {
font-weight: bold;
font-size: 24px;
margin-bottom: 8px;
}

.output-container {
border: 2px solid var(--sds-color-border-default-default);
width: 100%;
height: 220px;
background-color: #1e293b;
border-radius: 8px;
color: white;
overflow-y: auto;
padding: 8px;
}

.output-text {
padding: 8px;
font-size: 12px;
}

.success-text {
color: green;
}

.error-text {
color: red;
}

.output-title {
font-weight: bold;
font-size: 24px;
margin-bottom: 8px;
}

.output-container {
border: 2px solid var(--sds-color-border-default-default);
height: 220px;
background-color: #1e293b;
border-radius: 8px;
color: white;
overflow-y: auto;
padding: 8px;
}

.output-text {
padding: 8px;
font-size: 12px;
}

.success-text {
color: green;
}

.error-text {
color: red;
}

0 comments on commit d4deb25

Please sign in to comment.