Feature/add logotype to footer (#3947)

* Add logo type to footer

* Update changelog
pull/3950/head
Thomas Kaul 3 days ago committed by GitHub
parent 6e4758a183
commit 68cb4b27d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added the logotype to the footer
### Changed
- Improved the backgrounds of the chart of the holdings tab on the home page (experimental)

@ -46,7 +46,7 @@
</main>
@if (showFooter) {
<footer class="d-flex justify-content-center py-4 w-100">
<footer class="justify-content-center overflow-hidden py-4 w-100">
<div class="container">
<div class="mb-3 row">
<div class="col-sm">
@ -187,7 +187,7 @@
</ul>
</div>
</div>
<div class="row text-center">
<div class="mb-2 row text-center">
<div class="col">
© 2021 - {{ currentYear }}
<a href="https://ghostfol.io">Ghostfolio</a>
@ -195,12 +195,17 @@
</div>
<div class="row text-center text-muted">
<div class="col">
<small i18n
<small class="d-block" i18n
>The risk of loss in trading can be substantial. It is not advisable
to invest money you may need in the short term.</small
>
</div>
</div>
</div>
<div class="container d-none d-md-block mt-5">
<div class="row justify-content-center">
<div class="font-weight-bold line-height-1 logotype">Ghostfolio</div>
</div>
</div>
</footer>
}

@ -35,6 +35,13 @@
footer {
background-color: rgba(var(--palette-foreground-text), 0.05);
font-size: 90%;
.logotype {
font-size: 13vw;
letter-spacing: -0.03em;
margin-bottom: -5svw;
opacity: 0.05;
}
}
header {

@ -1,6 +1,7 @@
:host {
.label {
font-weight: 600;
letter-spacing: -0.03em;
}
.logo {

Loading…
Cancel
Save