Skip to content

Commit 859f6aa

Browse files
2 files modified
1 parent 1de9cd0 commit 859f6aa

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

src/index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
<my-app>loading</my-app>
1+
<my-app>loading</my-app>
2+
3+
<footer>
4+
<div class="icon-grid">
5+
<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>
6+
<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>
7+
<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>
8+
</div>
9+
</footer>

src/styles.scss

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,25 @@ html, body {
22
margin: 0;
33
padding: 0;
44
}
5+
6+
footer {
7+
position: absolute;
8+
bottom: 0;
9+
border-top: 1px solid #313b3f;
10+
padding: 5px 5px 1px 5px;
11+
box-sizing: border-box;
12+
width: 100%;
13+
.icon-grid {
14+
justify-content: center;
15+
display: grid;
16+
grid-column-gap: 10px;
17+
grid-template-columns: repeat(3, 35px);
18+
a {
19+
width: 35px;
20+
display: block;
21+
img {
22+
width: 100%;
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)