Hi,
Is there any way to set the item’s icon size in tree component?
The icon is uploaded by the user and is used in different components with different sizes.
Thanks.
Hi,
Is there any way to set the item’s icon size in tree component?
The icon is uploaded by the user and is used in different components with different sizes.
Thanks.
Scale it on the server with some utility or use custom theme and CSS to set an explicit size for the icons.
Thanks Jouni, i used
.v-tree-node .v-icon{
width: 16px;
height: 16px;
}
and it works.