Removing navbar toggler border.

This commit is contained in:
Dessalines 2019-08-20 14:40:51 -07:00
parent 46363811f0
commit baf205e113
2 changed files with 5 additions and 1 deletions

View File

@ -147,7 +147,7 @@ export class Community extends Component<any, State> {
paginator() { paginator() {
return ( return (
<div class="mt-2"> <div class="my-2">
{this.state.page > 1 && {this.state.page > 1 &&
<button class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)}><T i18nKey="prev">#</T></button> <button class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)}><T i18nKey="prev">#</T></button>
} }

View File

@ -2,6 +2,10 @@ body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
color: #dedede !important; color: #dedede !important;
} }
.navbar-toggler {
border: 0px;
}
.pointer { .pointer {
cursor: pointer; cursor: pointer;
} }