summaryrefslogtreecommitdiffstats
path: root/ui/src/components/community.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-04 09:42:50 -0500
committerDessalines <tyhou13@gmx.com>2020-03-04 09:42:50 -0500
commit8855b91d0c15bcf9273f81736149e74b8c1a2fe4 (patch)
treec923f97e7b59e12bdc1b987fd4bdfc7017532d80 /ui/src/components/community.tsx
parentd8bcfd7d44cd346727589515fdb314e45026c455 (diff)
Fixing select alignment.
Diffstat (limited to 'ui/src/components/community.tsx')
-rw-r--r--ui/src/components/community.tsx15
1 files changed, 8 insertions, 7 deletions
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index 1c875d04..0be549a5 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -194,13 +194,14 @@ export class Community extends Component<any, State> {
selects() {
return (
- <div class="mb-2">
- <DataTypeSelect
- type_={this.state.dataType}
- onChange={this.handleDataTypeChange}
- />
-
- <span class="mx-3">
+ <div class="mb-3">
+ <span class="mr-3">
+ <DataTypeSelect
+ type_={this.state.dataType}
+ onChange={this.handleDataTypeChange}
+ />
+ </span>
+ <span class="mr-2">
<SortSelect sort={this.state.sort} onChange={this.handleSortChange} />
</span>
<a