how can I center horizontaly and verticaly a mdi circle in 1 by 3 field.
code below does not work.
<template>
<div class="my-class">
<div :style="{color: msg.color || 'black', margin: 'auto' }">
<i :class="['mdi', msg.icon || 'mdi-help']" aria-hidden="true"></i>
</div>
</div>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style>
.my-class {
display: flex;
justify-content: center;
}
</style>
this is how it looks on dashboard 1