Skip to content

Commit

Permalink
rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
DanHillesheim committed Nov 9, 2022
1 parent d24c893 commit e9d2eea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/browser/src/popup/scss/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ p.lead {
border-radius: $border-radius;
}

.z10 {
.select-index-top {
position: relative;
z-index: 10;
z-index: 100;
}

.sr-only {
Expand Down
5 changes: 4 additions & 1 deletion apps/browser/src/popup/vault/vault-filter.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ <h1 class="sr-only">{{ "myVault" | i18n }}</h1>
</div>
</header>
<main tabindex="-1" cdk-scrollable>
<app-vault-select (onVaultSelectionChanged)="vaultFilterChanged()" class="z10"></app-vault-select>
<app-vault-select
(onVaultSelectionChanged)="vaultFilterChanged()"
class="select-index-top"
></app-vault-select>
<div class="no-items" *ngIf="(!ciphers || !ciphers.length) && !showSearching()">
<i class="bwi bwi-spinner bwi-spin bwi-3x" *ngIf="!loaded"></i>
<ng-container *ngIf="loaded">
Expand Down

0 comments on commit e9d2eea

Please sign in to comment.