How to customise height of card on Laravel Nova dashboard?

Viewed 3180

There is a ->width() option for cards. How can the height be defined?

3 Answers

As of now you can only adjust the width of the Card from the Card's php file using the ->width() method.

When you set the card width to 1/2 contents from the card seems to overflow. I solved the issue by adding the class h-auto to the <card> inside the Card.vue.

Related