1
0
mirror of https://github.com/bitwarden/web synced 2026-02-24 16:43:02 +00:00

Responsive Updates

Initial commit for responsive and dark mode updates
Further work maybe required on resolved merge conflicts
This commit is contained in:
DanHillesheim
2021-09-01 13:29:00 -06:00
committed by Thomas Rittson
parent 9dd859af7a
commit bc8e90ecc2
50 changed files with 272 additions and 173 deletions

View File

@@ -59,7 +59,7 @@
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate *ngIf="!selfHosted">
<h2 class="mt-5">{{'addons' | i18n}}</h2>
<div class="row">
<div class="form-group col-6">
<div class="form-group col-12 col-md-6">
<label for="additionalStorage">{{'additionalStorageGb' | i18n}}</label>
<input id="additionalStorage" class="form-control" type="number" name="AdditionalStorageGb"
[(ngModel)]="additionalStorage" min="0" max="99" step="1"
@@ -84,7 +84,7 @@
{{ 'estimatedTax' | i18n }}: {{ taxCharges | currency: 'USD $' }}
</ng-container>
</div>
<hr class="my-1 col-3 ml-0">
<hr class="my-1 col-12 col-md-3 ml-0">
<p class="text-lg"><strong>{{'total' | i18n}}:</strong>
{{total | currency:'USD $'}}/{{'year' | i18n}}</p>
</div>