I am new to vue and vuetify and just use v-card tag from vuetify.
I want that the v-card have 100% width, (without left or rigth side spacing)
Is there any configuration that can be made on these initial tags ?
<v-layout
column
justify-center
align-center
>
<v-flex
xs2
sm2
md2
>
How can it ben done ?
I try :
.section{
padding-top: 100px;
padding-bottom: 100px;
width:100%;
}
and :
<div class="section section_dark">services</div>
But still there is some left and right space for this div.