mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-01 18:08:19 +01:00
footer updates
This commit is contained in:
parent
b3a344635a
commit
6c7df2788e
@ -1,11 +1,9 @@
|
||||
<div class="container footer text-muted">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
© 2018, 8bit Solutions LLC
|
||||
</div>
|
||||
<div class="col text-center">
|
||||
|
||||
© {{year}}, 8bit Solutions LLC
|
||||
</div>
|
||||
<div class="col text-center"></div>
|
||||
<div class="col text-right">
|
||||
{{'versionNumber' | i18n : version}}
|
||||
</div>
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user