Skip to content

Commit b9d457f

Browse files
committed
Add company address to footer
1 parent cf25bb0 commit b9d457f

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

tbx/project_styleguide/templates/patterns/organisms/footer/footer.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,14 @@
6363
{% endif %}
6464
{% endwith %}
6565
</div>
66+
67+
</div>
68+
<div class="grid">
69+
<div class="grid__footer-address">
70+
<div class="footer__address">
71+
3rd Floor, 15 Colston St, Bristol BS1 5AP. Registered in England and Wales. Company No. 3983354. VAT No. 752981011.
72+
</div></div>
6673
</div>
67-
6874
{% include "patterns/molecules/carbon-impact/carbon-impact.html" %}
6975
</div>
7076

tbx/static_src/sass/components/_footer.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@
7777
}
7878
}
7979

80+
&__address {
81+
text-align: center;
82+
padding-bottom: $spacer-small;
83+
}
84+
8085
&__logo-link {
8186
display: flex;
8287
align-items: center;

tbx/static_src/sass/components/_grid.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,14 @@
272272
&__footer-logos {
273273
grid-column: 2 / span 4;
274274

275+
@include media-query(large) {
276+
grid-column: 2 / span 4;
277+
}
278+
}
279+
280+
&__footer-address {
281+
grid-column: 2 / span 4;
282+
275283
@include media-query(large) {
276284
grid-column: 2 / span 12;
277285
}

0 commit comments

Comments
 (0)