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 | <template> <div class="home-recruiters flex flex-center bg-primary text-white"> <div class="container"> <div class="text-h4 text-center title">Top Recruiters</div> <div class="row"> <div class="col-12 col-sm-6 col-md" v-for="i in 4" :key="i" > <RecruiterCard /> </div> </div> <div class="row justify-center q-pt-md"> <div class="col-auto"> <q-btn outline>Load more</q-btn> </div> </div> </div> </div> </template> <script> import RecruiterCard from "components/recruiters/RecruiterCard" export default { // name: 'ComponentName', components: { RecruiterCard }, data () { return {}; } }; </script> <style> .home-recruiters { min-height: 400px; padding: 32px; } .home-recruiters .title { /* padding-bottom: 32px; */ } .home-recruiters .recruiter-card { padding-top: 32px; height: 200px; } </style> |