mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
footer updates
This commit is contained in:
@@ -1,11 +1,9 @@
|
|||||||
<div class="container footer text-muted">
|
<div class="container footer text-muted">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
© 2018, 8bit Solutions LLC
|
© {{year}}, 8bit Solutions LLC
|
||||||
</div>
|
|
||||||
<div class="col text-center">
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col text-center"></div>
|
||||||
<div class="col text-right">
|
<div class="col text-right">
|
||||||
{{'versionNumber' | i18n : version}}
|
{{'versionNumber' | i18n : version}}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -11,10 +11,12 @@ import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|||||||
})
|
})
|
||||||
export class FooterComponent implements OnInit {
|
export class FooterComponent implements OnInit {
|
||||||
version: string;
|
version: string;
|
||||||
|
year: string = '2016';
|
||||||
|
|
||||||
constructor(private platformUtilsService: PlatformUtilsService) { }
|
constructor(private platformUtilsService: PlatformUtilsService) { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
this.year = new Date().getFullYear().toString();
|
||||||
this.version = this.platformUtilsService.getApplicationVersion();
|
this.version = this.platformUtilsService.getApplicationVersion();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ input, select, textarea {
|
|||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
padding: 40px 0 20px 0;
|
padding: 40px 0 40px 0;
|
||||||
border-top: 1px solid $border-color;
|
border-top: 1px solid $border-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user