[fix] Add missing Create Org button to filters (#1650)

This commit is contained in:
Addison Beck 2022-05-09 21:29:18 -04:00 committed by GitHub
parent 2f04c07262
commit f8a2fae82b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -10,6 +10,14 @@
</button>
</span>
</li>
<li class="filter-option">
<span class="filter-buttons">
<a href="#" routerLink="/settings/create-organization" class="filter-button">
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>
{{ "newOrganization" | i18n }}
</a>
</span>
</li>
</ul>
</ng-container>
<ng-container *ngSwitchCase="'personalOwnershipPolicy'">

View File

@ -95,7 +95,8 @@
display: flex;
align-items: center;
button {
button,
a {
@extend .no-btn;
}
@ -115,6 +116,7 @@
@include themify($themes) {
color: themed("linkColor") !important;
}
text-decoration: none;
}
}