Small tweak to boat cards
This commit is contained in:
@@ -1,8 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="boats">
|
<div v-if="boats">
|
||||||
<q-card v-for="boat in boats" :key="boat.id" flat class="mobile-card">
|
<q-card
|
||||||
|
v-for="boat in boats"
|
||||||
|
:key="boat.id"
|
||||||
|
class="mobile-card q-ma-sm">
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<q-img :src="boat.imgSrc" :fit="'scale-down'">
|
<q-img
|
||||||
|
:src="boat.imgSrc"
|
||||||
|
:fit="'scale-down'">
|
||||||
<div class="row absolute-top">
|
<div class="row absolute-top">
|
||||||
<div class="col text-h6 text-left">{{ boat.name }}</div>
|
<div class="col text-h6 text-left">{{ boat.name }}</div>
|
||||||
<div class="col text-right">{{ boat.class }}</div>
|
<div class="col text-right">{{ boat.class }}</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user