fix: Don't let the sort chevron wrap (#4075)

I couldn't figure out a way to not let it wrap *and* float it to the right,
however,

Fixes #4071
This commit is contained in:
Lars Eggert 2022-06-15 00:37:06 +02:00 committed by GitHub
parent 083732557d
commit 7fc601ee69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,6 @@
// Import bootstrap helpers
@import "bootstrap/scss/functions";
@import "bootstrap/scss/variables";
// @import "bootstrap/scss/mixins";
// @import "bootstrap/scss/utilities";
table .sort {
cursor: pointer;
@ -14,12 +12,9 @@ table .sort:hover {
}
table .sort:after {
white-space: nowrap;
font-family: 'bootstrap-icons';
font-size: larger;
color: $secondary;
content: '\f283'; // chevron-expand
float: right;
padding-left: .25em;
padding-right: .25em;
}