Skip to content

Commit

Permalink
unimportant cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Erin McLaughlin committed Nov 22, 2023
1 parent ad13910 commit ec08f25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions PersonalWebsite/Components/Background.razor
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="background-container">
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</div>
2 changes: 1 addition & 1 deletion PersonalWebsite/Components/Terminal.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@if (IsBuilding)
{
<div>Building...</div>
<p>Building...</p>
}
</div>
}
Expand Down
3 changes: 2 additions & 1 deletion PersonalWebsite/Components/Terminal.razor.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.terminal-window {
height: calc(100vh - 14rem);
position: relative;
margin: 0rem 1rem;
margin: 0rem 0.5rem;
}

.terminal-window header {
Expand Down Expand Up @@ -66,3 +66,4 @@
.terminal-window .green {
color: green;
}

4 changes: 2 additions & 2 deletions PersonalWebsite/Components/TerminalCommand.razor
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div>
<p>
<span style="line-break: anywhere">> @TypedCommand</span>
@if (ShowCursor)
{
<TerminalCursor />
}
</div>
</p>

@code {

Expand Down

0 comments on commit ec08f25

Please sign in to comment.