Skip to content

Commit

Permalink
Also add .info-sites
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikhorluck committed Jul 29, 2024
1 parent a36af5e commit 2683b3d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/core/components/Footer/footer.less
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/* 3 columns are calculated by (maxWidth - padding - margin) / 3). */
grid-template-columns: 1fr 1.3fr 1fr;
grid-row-gap: 35px;
grid-row-gap: 1em;
color: @darkGray;
width: calc(70% - @paddingHorizontal * 2);
margin: 10px auto 0;
Expand Down Expand Up @@ -106,4 +106,12 @@
&:hover {
filter: brightness(0.2);
}
}

.infoSites {
grid-column: span 3;
display: flex;
justify-content: space-around;
margin: 0;
height: auto;
}

Check failure on line 117 in src/core/components/Footer/footer.less

View workflow job for this annotation

GitHub Actions / stylelint

src/core/components/Footer/footer.less#L117

Unexpected missing end-of-source newline (no-missing-end-of-source-newline)
5 changes: 5 additions & 0 deletions src/core/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ const Footer = () => (
<p className={style.mailinglists}>
<a href="https://online.ntnu.no/resourcecenter/mailinglists/">E-postlister for linjeforeninger</a>
</p>
<p className={style.infoSites}>
<a href="https://gloshaugen.info">gloshaugen.info</a>
<a href="https://dragvoll.info">dragvoll.info</a>
<a href="https://karrieredager.info">karrieredager.info</a>
</p>
</div>
</footer>
);
Expand Down

0 comments on commit 2683b3d

Please sign in to comment.