Skip to content

Commit 771a913

Browse files
committed
Add link to github profile in footer
1 parent cb8a3a1 commit 771a913

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

dist/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ <h2 id="sudoku-status"></h2>
4242
</div>
4343

4444
<footer>
45-
Made with &#10084;&#65039; by Luis De Anda (nibble-4bits)
45+
<p class="footer-info">
46+
Made with &#10084;&#65039; by Luis De Anda (<a href="https://github.com/nibble-4bits"
47+
rel="noopener noreferrer" target="_blank">nibble-4bits</a>)
48+
</p>
4649
</footer>
4750
</body>
4851

src/css/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ button {
5353
padding: 0.5em 0.8em;
5454
color: #ffffff;
5555
background-color: #196cca;
56+
cursor: pointer;
5657
}

src/css/layout.css

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ body {
3333
.slider-row {
3434
grid-area: slider;
3535
justify-self: center;
36+
display: flex;
37+
align-items: center;
3638
margin-top: 1em;
3739
}
3840

@@ -54,6 +56,19 @@ footer {
5456
width: 100%;
5557
background-color: #196cca;
5658
color: #eef0f2;
57-
padding: 0.5em 0;
59+
padding: 1em 0;
5860
text-align: center;
5961
}
62+
63+
.footer-info {
64+
margin: 0;
65+
}
66+
67+
.footer-info a {
68+
color: inherit;
69+
text-decoration: none;
70+
}
71+
72+
.footer-info a:hover {
73+
text-decoration: underline;
74+
}

0 commit comments

Comments
 (0)