Skip to content

Commit 1567329

Browse files
2 files modified
1 parent 38a0e77 commit 1567329

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

src/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@
88
>
99
</header>
1010
<my-app>loading</my-app>
11+
12+
<footer>
13+
<div class="icon-grid">
14+
<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>
15+
<a href="https://www.instagram.com/nodulldayz/" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/128px-Instagram_logo_2016.svg.png"></a>
16+
<a href="https://flickr.com/photos/nodulldays/" target="_blank"><img alt="Flickr logo - SuperTinyIcons" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Flickr_logo_-_SuperTinyIcons.svg/512px-Flickr_logo_-_SuperTinyIcons.svg.png"></a>
17+
</div>
18+
</footer>

src/styles.scss

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

0 commit comments

Comments
 (0)