Dialogs and Vuetify styling changes

This commit is contained in:
N-Pex 2025-05-08 11:52:39 +02:00
parent 2ba0d57aa8
commit a97211afdf
45 changed files with 320 additions and 346 deletions

View file

@ -22,11 +22,12 @@ const custom = {
component: (props) => {
const {
icon,
tag,
...rest
} = props;
const stringIcon = icon;
if (icons[stringIcon]) {
return h(props.tag, rest, [h(icons[stringIcon].component)]);
return h(tag, rest, [h(icons[stringIcon].component, { style: "width:100%;height:100%" })]);
}
return md.component(props);
}