Dashboard 2.0 sidebar and dropdown list text sizes

Thanks to all for Dashboard 2.0, have just converted my largest Dashboard across and apart from a few fiddles to get everything going to msg.payload, all went well. I am a bit stuck on the text sizes of the sidebar and dropdown list, they are fine on my laptop, but these old eyes struggle viewing on my phone. I think it was '.v-input input' that managed to increase the size of the text on the dropdown entry box, but back to small text as soon as it looses focus. Are there setting I can put in to my template for changing text size for the sidebar and the dropdown part of a dropdown list? Is there somewhere I can search to find standard styles I can use. I looked in the Vuetify site but didn't find what I was looking for, and wasn't really sure what I was looking for, or even if I was looking in the right place :slight_smile:
Thanks
B

OK, after going with a random scatter gun method :slight_smile:

    /* this increased the size of the text in the sidebar 
    and the size of the text in the dropdown list 
    and changed the text colour for the sidevard and dropdown list
    but left the sidebar ICON untouched*/
    .v-list-item-title {
    font-size: 1.5rem !important;
    color: green;
    background-color: yellow;
    }
    .v-list-item{
    /* this increased the size of the ICON
    in the sidebar, and changed the background and text colouur
    of both the ICON and text.  Also changed the colour of text
    in the dropdown list, but didn't increase the dropdown list text size */
    font-size: 1.5rem;
    color: green;
    background-color: yellow;
    }

I think this is where you find some of it:

or maybe here: