I'm trying to separate the upper box from the center and make the items in the lower box distribute equally.But when I added <q-separater vertical></q-separater>, the left and right side box size are not equal. Below are the code, if you put it in codepen you will see the card is not separated equally. How can I fix this?
<div id="q-app">
<div class="q-pa-md">
<div class="q-gutter-md row justify-center items-center">
<q-card class="my-card">
<q-card-section horizontal>
<q-card-section>
<div class="text-h6">Group 1</div>
</q-card-section>
<q-separator vertical></q-separator>
<q-card-section>
<div class="text-h6">Group 2</div>
</q-card-section>
</q-card-section>
<q-separator></q-separator>
<q-card-section horizontal>
<q-card-section>
<div class="text-h6">A</div>
</q-card-section>
<q-card-section>
<div class="text-h6">B</div>
</q-card-section>
<q-card-section>
<div class="text-h6">C</div>
</q-card-section>
</q-card>
</div>
</div>
</div>
//script
const app = Vue.createApp({
setup () {
return {}
}
})
app.use(Quasar, { config: {} })
app.mount('#q-app')