bs5: fix underline weirdness

This commit is contained in:
Michael Shamoon 2022-02-19 21:39:02 -08:00
parent 3a652a8941
commit fd58096112
2 changed files with 13 additions and 3 deletions

View File

@ -52,10 +52,9 @@
<div class="w-100 d-xl-none"></div>
<div class="col col-xl-auto mb-2 mb-xl-0">
<button class="btn btn-link btn-sm px-0 mx-0 ms-xl-n4" [disabled]="!rulesModified" (click)="resetSelected()">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-x" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-x me-1" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/>
</svg>&nbsp;<ng-container i18n>Reset filters</ng-container>
</svg><ng-container i18n>Reset filters</ng-container>
</button>
</div>
</div>

View File

@ -116,3 +116,14 @@ body {
.ngx-file-drop__drop-zone--over {
background-color: $primaryFaded !important;
}
a.badge {
text-decoration: none;
}
.btn-link {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}