summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-08-20 14:40:51 -0700
committerDessalines <tyhou13@gmx.com>2019-08-20 14:40:51 -0700
commitbaf205e113f7963fa65d373c84b73a0ac91284a8 (patch)
tree62fc13fbd3e8b814040804de6ececa2f85747b65 /ui
parent46363811f0af34d0456910ec733cf890cb42e97c (diff)
Removing navbar toggler border.
Diffstat (limited to 'ui')
-rw-r--r--ui/src/components/community.tsx2
-rw-r--r--ui/src/css/main.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index 0a982a84..3459320c 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -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>
}
diff --git a/ui/src/css/main.css b/ui/src/css/main.css
index 729604a9..af1ca686 100644
--- a/ui/src/css/main.css
+++ b/ui/src/css/main.css
@@ -2,6 +2,10 @@ body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
color: #dedede !important;
}
+.navbar-toggler {
+ border: 0px;
+}
+
.pointer {
cursor: pointer;
}