I am trying to use a v-card with vuetify 2.x. The card overflows on IE11 even though its max-width is set to 90%.
I imported the following in main.js for browser compatibility.
import Es6Promise from 'es6-promise';
import 'babel-polyfill';
Es6Promise.polyfill();
My card is defined in the template as follows:
<template>
<v-layout column>
<v-card class="mx-auto pa-4" max-width="90%">
<v-card-title>Test</v-card-title>
<v-card-text class="text-justify">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent
</v-card-text>
</v-card>
</v-layout>
</template>