Skip to content

Commit

Permalink
Merge pull request #853 from bcgov/oleks
Browse files Browse the repository at this point in the history
DSS-1032: Add contact email info to footer
  • Loading branch information
ychung-mot authored Dec 5, 2024
2 parents 9e8bbfa + 6bc8997 commit 935428f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/app/common/layout/layout.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ <h1 class="main-title">Short-Term Rental Data Portal</h1>
</div>
<div class="footer do-not-print-it" role="contentinfo">
<div class="cc">© 2024 Government of British Columbia.</div>
<div class="contacts">
For technical support, contact <a href="mailto:[email protected]">DSSadmin&#64;gov.bc.ca</a>
</div>
</div>

<p-toast [life]="25000"></p-toast>
22 changes: 22 additions & 0 deletions frontend/src/app/common/layout/layout.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,28 @@
position: sticky;
bottom: 0;
z-index: 10;

display: flex;
justify-content: space-between;
align-items: center;

.contacts {
font-size: smaller;
text-align: end;

a {
color: #FFFFFF;
text-decoration: none;

&:hover {
text-decoration: underline;
}

&:visited {
color: #FFFFFF;
}
}
}
}

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

0 comments on commit 935428f

Please sign in to comment.