Skip to content

Commit

Permalink
demo: make the columns properly aligned (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
axkirillov authored and pi0 committed Oct 7, 2019
1 parent b446a76 commit e21de05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/demo/pages/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<b-alert show v-if="$auth.$state.redirect">
You have to login before accessing to <strong>{{ $auth.$state.redirect }}</strong>
</b-alert>
<b-row align-h="center" align-v="center">
<b-row align-h="center pt-4">
<b-col md="4">
<b-card bg-variant="light">
<busy-overlay />
Expand All @@ -25,10 +25,10 @@
</form>
</b-card>
</b-col>
<b-col md="1">
<b-col md="1" align-self="center">
<div class="text-center"><b-badge pill>OR</b-badge></div>
</b-col>
<b-col md="4" class="text-center pt-4">
<b-col md="4" class="text-center">
<b-card title="Social Login" bg-variant="light">
<div v-for="s in strategies" :key="s.key" class="mb-2">
<b-btn @click="$auth.loginWith(s.key)" block :style="{background: s.color}" class="login-button">Login with {{ s.name }}</b-btn>
Expand Down

0 comments on commit e21de05

Please sign in to comment.