Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <template> <div class="home-hero bg-primary"> <div class="row justify-center"> <div class="col-12 col-md"> <q-card flat class="q-pa-md q-px-xl bg-transparent home-card" > <q-card-section> <div class="text-h4 text-white">The Fab Lab Network collects some of the greatest talents around the globe</div> <div class="text-h5 q-pt-sm text-white">Post your job offers and recruit smart people that can make a difference for your organization.</div> </q-card-section> <q-card-actions vertical> <div class="row q-gutter-md q-pl-sm"> <q-btn outline color="white" v-ripple >Post Job</q-btn> <q-btn outline color="white" v-ripple >Submit resume</q-btn> </div> </q-card-actions> </q-card> </div> </div> </div> </template> <script> export default { // name: 'ComponentName', data () { return {}; } }; </script> <style> .home-hero { /* min-height: 400px; */ padding-top: 32px; } .home-hero .home-card { width: 700px; margin: 0 auto; } </style> |