Skip to content

Commit

Permalink
changed text to ghostboard
Browse files Browse the repository at this point in the history
figure it makes more sense for the name of the projet to be the title of the page and also it looks better on a mobile device to have one word as opposed to several on multiple lines.
  • Loading branch information
jon6fingrs authored Jan 30, 2025
1 parent b5af642 commit 387b5c7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion server/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<!DOCTYPE html>
<html lang="en">
<head>
Expand All @@ -14,6 +15,12 @@
transition: background-color 0.3s, color 0.3s;
}

h1 {
text-align: center;
white-space: normal;
overflow-wrap: break-word; /* Ensures full words wrap naturally */
}

/* Default dark mode styles */
body.dark-mode {
background-color: #343541;
Expand Down Expand Up @@ -195,7 +202,7 @@
</style>
</head>
<body class="dark-mode">
<h1>Realtime Synced Text Field</h1>
<h1>Ghostboard</h1>
<textarea id="shared-text"></textarea>

<div class="button-container">
Expand Down

0 comments on commit 387b5c7

Please sign in to comment.