Skip to content

Commit 935428f

Browse files
authored
Merge pull request #853 from bcgov/oleks
DSS-1032: Add contact email info to footer
2 parents 9e8bbfa + 6bc8997 commit 935428f

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

frontend/src/app/common/layout/layout.component.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ <h1 class="main-title">Short-Term Rental Data Portal</h1>
2727
</div>
2828
<div class="footer do-not-print-it" role="contentinfo">
2929
<div class="cc">© 2024 Government of British Columbia.</div>
30+
<div class="contacts">
31+
For technical support, contact <a href="mailto:DSSadmin@gov.bc.ca">DSSadmin&#64;gov.bc.ca</a>
32+
</div>
3033
</div>
3134

3235
<p-toast [life]="25000"></p-toast>

frontend/src/app/common/layout/layout.component.scss

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,28 @@
107107
position: sticky;
108108
bottom: 0;
109109
z-index: 10;
110+
111+
display: flex;
112+
justify-content: space-between;
113+
align-items: center;
114+
115+
.contacts {
116+
font-size: smaller;
117+
text-align: end;
118+
119+
a {
120+
color: #FFFFFF;
121+
text-decoration: none;
122+
123+
&:hover {
124+
text-decoration: underline;
125+
}
126+
127+
&:visited {
128+
color: #FFFFFF;
129+
}
130+
}
131+
}
110132
}
111133

112134
@media only screen and (max-width: 1500px) {

0 commit comments

Comments
 (0)