Increasing the size #61
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi! You can use the styles prop of navbar-card for that, targetting whichever component you want to modify using css. A quick example of what you are trying to achieve: type: custom:navbar-card
...
styles: |
.navbar {
width: 80vw !important;
}
.icon {
--mdc-icon-size: 36px;
}
.navbar .label {
font-size: 15px;
} You can also find some quick and simple examples in the README and search for user submitted examples on the community forum |
Beta Was this translation helpful? Give feedback.
-
This helps!! Thank you so much, this card is really good. I have 3 questions.
Again, thank you for the great work! |
Beta Was this translation helpful? Give feedback.
Hi! You can use the styles prop of navbar-card for that, targetting whichever component you want to modify using css.
A quick example of what you are trying to achieve:
You can also find some quick and simple examples in the README and search for user submitted examples on the community forum