mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* [Icons] Update Font Sheet * Prettier updates * Updated refresh -> generate * Updated closed folder icon * Reverted to using a base class * Update jslib * Removed unused import * Updated eye/eye-slash icon references * Update jslib * Updating fallback image for cipher icon * Update jslib * Removed duplicate icon base class * Update jslib * Prettier Co-authored-by: Hinton <oscar@oscarhinton.com>
29 lines
858 B
HTML
29 lines
858 B
HTML
<header>
|
|
<div class="left">
|
|
<a routerLink="/tabs/settings">
|
|
<span class="header-icon"><i class="bwi bwi-angle-left" aria-hidden="true"></i></span>
|
|
<span>{{ "back" | i18n }}</span>
|
|
</a>
|
|
</div>
|
|
<h1 class="center">
|
|
<span class="title">{{ "sync" | i18n }}</span>
|
|
</h1>
|
|
<div class="right"></div>
|
|
</header>
|
|
<content>
|
|
<div class="content center-content">
|
|
<button
|
|
type="button"
|
|
class="btn block primary"
|
|
(click)="sync()"
|
|
#syncBtn
|
|
[disabled]="syncBtn.loading"
|
|
[appApiAction]="syncPromise"
|
|
>
|
|
<span [hidden]="syncBtn.loading">{{ "syncVaultNow" | i18n }}</span>
|
|
<i class="bwi bwi-spinner bwi-lg bwi-spin" [hidden]="!syncBtn.loading" aria-hidden="true"></i>
|
|
</button>
|
|
<p class="text-center text-muted small">{{ "lastSync" | i18n }} {{ lastSync }}</p>
|
|
</div>
|
|
</content>
|