Skip to content

Commit fc00d6d

Browse files
2 files modified
1 parent 3ddfd44 commit fc00d6d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@
99
</header>
1010

1111
<my-app>loading</my-app>
12+
13+
<footer>
14+
<div class="icon-grid">
15+
<a href="https://www.linkedin.com/in/eric-feldberg-62a758297" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/512px-LinkedIn_logo_initials.png"></a>
16+
</div>
17+
</footer>

src/styles.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,23 @@ header {
3939
color: #d9a74a;
4040
}
4141
}
42+
footer {
43+
position: absolute;
44+
bottom: 0;
45+
border-top: 1px solid #313b3f;
46+
padding: 5px 5px 1px 5px;
47+
box-sizing: border-box;
48+
width: 100%;
49+
.icon-grid {
50+
justify-content: center;
51+
display: grid;
52+
// grid-template-columns: repeat(3, 40px);
53+
a {
54+
width: 40px;
55+
display: block;
56+
img {
57+
width: 100%;
58+
}
59+
}
60+
}
61+
}

0 commit comments

Comments
 (0)