Skip to content

Commit

Permalink
ui: fix margin of collection list warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Nov 25, 2019
1 parent bfcab4f commit 1f7cdfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/views/CollectionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Alert shown when the API client failed. -->
<template v-if="error">
<b-alert show dismissible variant="warning">
<b-alert show dismissible variant="warning" class="my-3">
<h4 class="alert-heading">Search error</h4>
We couldn't connect to the API server. You may want to try again in a few seconds.
<hr />
Expand All @@ -14,8 +14,8 @@

<!-- Search form and results. -->
<template v-else>
<div>
<b-form inline @submit="onSubmit" @reset="onReset" class="py-3">
<div class="my-3">
<b-form inline @submit="onSubmit" @reset="onReset">
<b-input-group size="sm" class="w-100">
<b-form-input autofocus @keydown.esc="onReset" v-model="query" type="text" placeholder="Search all collections"></b-form-input>
<b-input-group-append>
Expand Down

0 comments on commit 1f7cdfe

Please sign in to comment.