I currently have a setup where I am using the v-flex
with a grid ratio of 2 / 8 / 2. This places my content in the center of the section with a width of 8, but the issue is that this centered content does not match up with the other elements on the website. Is there a different approach to achieve the same effect?
Here is the code snippet of my current implementation:
<v-footer>
<v-container fluid>
<v-layout >
<v-flex md2 ></v-flex>
<v-flex md8 >
My centered content...
</v-flex>
<v-flex md2></v-flex>
</v-layout>
</v-container>
</v-footer>