desired appearance: https://i.sstatic.net/aPrrP.png
current appearance:
https://i.sstatic.net/JNH2W.png
In an attempt to ensure two tables have a consistent and responsive height using Vuetify features, I have implemented the following code:
<template>
<div>
<v-layout class="duo-table" row wrap>
<!-- reporting scope table -->
<v-flex xs6 class="left-table">
<v-flex height="100%">
<div class="duo-table-header">
REPORTING SCOPE
</div>
<div class="table-content">
<v-layout>
<v-flex xs3 class="left-table-xs3-col">
246
</v-flex>
<v-flex xs9 class="left-table-xs9-col" >
Total variants assessed
</v-flex>
</v-layout>
<v-layout>
<v-flex xs3 class="left-table-xs3-col">
63
</v-flex>
<v-flex xs9 class="left-table-xs9-col">
Total drugs assessed
</v-flex>
</v-layout>
</div>
</v-flex>
</v-flex>
<!-- your risk table -->
<v-flex xs6 class="right-table">
<v-flex height="100%">
<div class="duo-table-header">
YOUR RISK
</div>
<div class="table-content">
<v-layout row wrap>
<v-flex xs2 class="right-table-xs2-img">
<v-img :src="imagePath" height='100%'/>
</v-flex>
<v-flex xs10>
<v-flex height="100%">
<v-flex class="right-table-xs10-col">
YOUR PHARMACOGENOMIC RESULTS
</v-flex>
<v-flex class="right-table-xs10-col">
30 Drugs Potentially Impacted
</v-flex>
</v-flex>
</v-flex>
</v-layout>
</div>
</v-flex>
</v-flex>
</v-layout>
</div>
</template>
I have also explored using flexbox, but it did not provide the desired result. I am considering incorporating CSS into the img element. Any suggestions on how to achieve my objective would be greatly appreciated. Thank you in advance.