0👍
✅
After your comment i think i have a better understand, tell me if not.
But i understand in the both image everything have the same width but the content is align to the left on the first image.
In the second image is center and it’s what you want to do.
With have multiple solution depend on what it’s inside, the simplest is on the v-col add the css:
display: flex;
flex-direction: column;
justify-content: center;
You can wrap your content inside v-col in a div if it’s cause trouble on your display.
Source:stackexchange.com