mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-06 23:51:28 +01:00
fix: width layout (#3234)
This commit is contained in:
parent
8cc02ff03d
commit
4398467368
@ -126,11 +126,15 @@
|
||||
[ngClass]="{ active: organization.id === activeFilter.selectedOrganizationId }"
|
||||
>
|
||||
<span class="filter-buttons">
|
||||
<button class="filter-button" (click)="applyOrganizationFilter(organization)">
|
||||
<button
|
||||
class="filter-button"
|
||||
[ngClass]="{ 'disabled-organization': !organization.enabled }"
|
||||
(click)="applyOrganizationFilter(organization)"
|
||||
>
|
||||
<i class="bwi bwi-fw bwi-business" aria-hidden="true"></i>
|
||||
{{ organization.name }}
|
||||
</button>
|
||||
<span class="ml-auto contents">
|
||||
<span class="ml-auto">
|
||||
<i
|
||||
*ngIf="!organization.enabled"
|
||||
class="org-options bwi bwi-fw bwi-exclamation-triangle text-danger"
|
||||
|
@ -113,6 +113,10 @@
|
||||
text-decoration: none;
|
||||
}
|
||||
max-width: 90%;
|
||||
|
||||
&.disabled-organization {
|
||||
max-width: 78%;
|
||||
}
|
||||
}
|
||||
|
||||
.edit-button {
|
||||
|
Loading…
Reference in New Issue
Block a user