Removing navbar toggler border.

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

View file

@ -147,7 +147,7 @@ export class Community extends Component<any, State> {
paginator() {
return (
<div class="mt-2">
<div class="my-2">
{this.state.page > 1 &&
<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;
}
.navbar-toggler {
border: 0px;
}
.pointer {
cursor: pointer;
}