1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-01 18:08:19 +01:00

footer updates

This commit is contained in:
Kyle Spearrin 2018-07-19 12:21:31 -04:00
parent b3a344635a
commit 6c7df2788e
3 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,9 @@
<div class="container footer text-muted">
<div class="row">
<div class="col">
&copy; 2018, 8bit Solutions LLC
</div>
<div class="col text-center">
&copy; {{year}}, 8bit Solutions LLC
</div>
<div class="col text-center"></div>
<div class="col text-right">
{{'versionNumber' | i18n : version}}
</div>

View File

@ -11,10 +11,12 @@ import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
})
export class FooterComponent implements OnInit {
version: string;
year: string = '2016';
constructor(private platformUtilsService: PlatformUtilsService) { }
ngOnInit() {
this.year = new Date().getFullYear().toString();
this.version = this.platformUtilsService.getApplicationVersion();
}
}

View File

@ -163,7 +163,7 @@ input, select, textarea {
.footer {
margin-top: 40px;
padding: 40px 0 20px 0;
padding: 40px 0 40px 0;
border-top: 1px solid $border-color;
}