diff --git a/app/components/link-grid.js b/app/components/link-grid.js
index b68570d..9e0d42c 100644
--- a/app/components/link-grid.js
+++ b/app/components/link-grid.js
@@ -4,10 +4,10 @@ import html from "choo/html";
function returnLinkTemplate(title, description, destination, label) {
return `
-
- ${title}
- ${description}
- ${label}
+
+ ${title}
+ ${description}
+ ${label}
`;
}
@@ -15,8 +15,8 @@ function returnLinkTemplate(title, description, destination, label) {
export default (links) => {
const renderedLinks = links.map((link) => returnLinkTemplate(link.title, link.description, link.destination, link.label));
return html`
-
- ${renderedLinks.join("\n")}
+
`;
}
diff --git a/app/sass/partials/_link-grid.scss b/app/sass/partials/_link-grid.scss
index 952cd11..8f4d04f 100644
--- a/app/sass/partials/_link-grid.scss
+++ b/app/sass/partials/_link-grid.scss
@@ -1,4 +1,4 @@
-.home__features {
+.link-grid {
align-content: center;
border-bottom: 1px solid rgba($black, 0.05);
display: flex;
@@ -8,7 +8,7 @@
padding-bottom: 2rem;
}
-.home__feature {
+.link-grid__link {
position: relative;
text-align: center;
vertical-align: top;
@@ -32,12 +32,12 @@
-.home__feature__title {
+.link-grid__title {
font-size: 2rem;
margin-bottom: 0.5rem;
}
-.home__feature__description {
+.link-grid__description {
font-size: 1rem;
left: 10%;
margin-bottom: 1rem;
@@ -45,7 +45,7 @@
width: 80%;
}
-.home__feature__cta {
+.link-grid__cta {
@extend .__button-black;
display: inline-block;
font-size: 1rem;