mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
[Icons] Fix button icon/text margins (#1443)
This commit is contained in:
@@ -37,7 +37,7 @@
|
|||||||
</app-vault-bulk-actions>
|
</app-vault-bulk-actions>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-outline-primary btn-sm ml-3"
|
class="btn btn-outline-primary btn-sm ml-auto"
|
||||||
(click)="addCipher()"
|
(click)="addCipher()"
|
||||||
*ngIf="!deleted"
|
*ngIf="!deleted"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
<div class="ml-auto d-flex">
|
<div class="ml-auto d-flex">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-outline-primary btn-sm ml-3"
|
class="btn btn-outline-primary btn-sm"
|
||||||
(click)="addSend()"
|
(click)="addSend()"
|
||||||
[disabled]="disableSend"
|
[disabled]="disableSend"
|
||||||
>
|
>
|
||||||
@@ -177,7 +177,7 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="loaded">
|
<ng-container *ngIf="loaded">
|
||||||
<p>{{ "noSendsInList" | i18n }}</p>
|
<p>{{ "noSendsInList" | i18n }}</p>
|
||||||
<button (click)="addSend()" class="btn btn-outline-primary ml-3" [disabled]="disableSend">
|
<button (click)="addSend()" class="btn btn-outline-primary" [disabled]="disableSend">
|
||||||
<i class="bwi bwi-plus bwi-fw"></i>{{ "createSend" | i18n }}
|
<i class="bwi bwi-plus bwi-fw"></i>{{ "createSend" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|||||||
@@ -184,7 +184,7 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="loaded">
|
<ng-container *ngIf="loaded">
|
||||||
<p>{{ "noItemsInList" | i18n }}</p>
|
<p>{{ "noItemsInList" | i18n }}</p>
|
||||||
<button (click)="addCipher()" class="btn btn-outline-primary ml-3" *ngIf="showAddNew">
|
<button (click)="addCipher()" class="btn btn-outline-primary" *ngIf="showAddNew">
|
||||||
<i class="bwi bwi-plus bwi-fw"></i>{{ "addItem" | i18n }}
|
<i class="bwi bwi-plus bwi-fw"></i>{{ "addItem" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
</app-vault-bulk-actions>
|
</app-vault-bulk-actions>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-outline-primary btn-sm ml-3"
|
class="btn btn-outline-primary btn-sm"
|
||||||
(click)="addCipher()"
|
(click)="addCipher()"
|
||||||
*ngIf="!deleted"
|
*ngIf="!deleted"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -292,3 +292,7 @@ code {
|
|||||||
color: themed("textMuted") !important;
|
color: themed("textMuted") !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button i.bwi {
|
||||||
|
margin-right: 0.25rem;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user