1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-16 08:34:39 +00:00

Add warning banner

This commit is contained in:
Robyn MacCallum
2025-08-01 10:04:36 -04:00
parent 8d1ca3a650
commit a7d12b5489
2 changed files with 12 additions and 0 deletions

View File

@@ -99,6 +99,8 @@ const SyncInterval = 6 * 60 * 60 * 1000; // 6 hours
<ng-template #loginApproval></ng-template>
<app-header></app-header>
<div class="test-banner">This is a test build, do not use production data.</div>
<div id="container">
<div class="loading" *ngIf="loading">
<i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i>

View File

@@ -11,6 +11,16 @@ app-root {
min-height: 0;
}
.test-banner {
height: 5%;
background-color: #ffe478;
color: #000000;
padding: 8px 16px;
text-align: center;
font-weight: 500;
border-bottom: 1px solid #e4c76e;
}
.vault {
height: 100%;
display: flex;