3

I have vuetify calendar component. This calendar (only on month type) is too big for mobile screen. Helper images: image 1 image 2

this my code:

<v-layout align-space-around
          justify-center
          row wrap
          column
          fill-height>
          <v-flex xs12>
            <v-card flat>
              <v-calendar 
                ref="calendar"
                v-model="start"
                :type="type"
                :end="end"
                :now="today"
                :value="today"
                ma-0
                locale
                @click:date="clickDate">
                  ...some calendar code here...
              </v-calendar>
            </v-card>
          </v-flex>
</v-layout>

The v-card element is rendering correctly, fits for device, but calendar takes more space (for width) that his parent (v-card).

I'll be glad for some help with that.

Emil Majer
  • 143
  • 1
  • 3
  • 11

0 Answers0