Feature/add agplv3 logo to landing page (#1121)

* Add AGPLv3 logo

* Update changelog
This commit is contained in:
Thomas Kaul
2022-08-02 22:14:27 +02:00
committed by GitHub
parent d5cd4c0dea
commit 4adda6783d
4 changed files with 56 additions and 1 deletions

View File

@@ -194,7 +194,7 @@
<div class="h-100 w-100"></div>
</div>
</div>
<div class="row">
<div class="row mb-4">
<div
class="align-items-center d-flex flex-column justify-content-center w-100"
>
@@ -202,4 +202,14 @@
<div>Wealth Management Software</div>
</div>
</div>
<div class="row">
<div class="align-items-center d-flex flex-column w-100">
<a
class="agplv3-logo"
href="https://www.gnu.org/licenses/agpl-3.0.html"
target="_blank"
title="GNU Affero General Public License Version 3"
></a>
</div>
</div>
</div>

View File

@@ -3,6 +3,16 @@
:host {
display: block;
.agplv3-logo {
background-color: rgba(var(--dark-primary-text));
height: 3rem;
mask-image: url('/assets/images/AGPLv3-logo.svg');
mask-position: center;
mask-repeat: no-repeat;
mask-size: contain;
width: 7.5rem;
}
.button-container {
.mat-stroked-button {
background-color: var(--light-background);
@@ -46,6 +56,10 @@
}
:host-context(.is-dark-theme) {
.agplv3-logo {
background-color: rgba(var(--light-primary-text));
}
.button-container {
.mat-stroked-button {
background-color: var(--dark-background);

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB