Skip to content

Commit

Permalink
added url to grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Paulen committed Dec 19, 2024
1 parent 8fc994b commit 2a003e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/HomePage.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ input {
gap: 0.5rem;
}

.server-url {
grid-area: url;
}

.time-col {
grid-area: time;
}
Expand Down
2 changes: 1 addition & 1 deletion src/HomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function HomePage() {
onActivate={() => setActiveDropdownIndex(dropdownIndex)}
>
<div className="server-properties">
{spawner.active && <a href={spawner.url}> {spawner.url} </a>
{spawner.active && <a className="server-url" href={spawner.url}> {spawner.url} </a>
}
<div className="time-col">
{spawner.last_activity
Expand Down

0 comments on commit 2a003e8

Please sign in to comment.