Skip to content

Commit

Permalink
refactor: 🔧 improve logo alignment with new container
Browse files Browse the repository at this point in the history
Wrap h1 element in a div with class "logo" and adjust styles for centered display.
  • Loading branch information
davidgasquez committed Nov 6, 2024
1 parent d48d311 commit 5d5439c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
h1 {
font-size: 2.6em;
color: #333333;
}

.logo {
text-align: center;
margin: 0 auto;
}

a {
Expand All @@ -29,7 +33,10 @@
</head>

<body>
<h1>&#11043;</h1>
<div class="logo">
<h1>&#11043;</h1>
</div>

<h1>Nexus Data Labs</h1>

<p>
Expand Down

0 comments on commit 5d5439c

Please sign in to comment.