Closed aeksco closed 6 years ago
Add some bootstrap columns to src/containers/auth_register/components/layout.vue
src/containers/auth_register/components/layout.vue
It should be 4 / 4 / 4 for name, email, github and 6 / 6 for password and confirm password
4 / 4 / 4
6 / 6
Use col-sm-12 col-md-4 CSS classes for the first 3
col-sm-12 col-md-4
Use col-sm-12 col-md-6 CSS classes for the last 2
col-sm-12 col-md-6
Make sure to wrap them in <div class='row'></div> elements!
<div class='row'></div>
Also, update the <template> to use 2-space indention instead of 4-space.
<template>
Resolved by #122
Add some bootstrap columns to
src/containers/auth_register/components/layout.vue
It should be
4 / 4 / 4
for name, email, github and6 / 6
for password and confirm passwordUse
col-sm-12 col-md-4
CSS classes for the first 3Use
col-sm-12 col-md-6
CSS classes for the last 2Make sure to wrap them in
<div class='row'></div>
elements!Also, update the
<template>
to use 2-space indention instead of 4-space.