https://i.sstatic.net/6VOIo.png
Currently utilizing Vuetify for my project
<v-select id="makeMeBlue" dense outlined :items="form.values.urlTypes"
label="Single or Multi URL" v-model="form.values.urlType"
:rules="form.rules.urlType">
</v-select>
In an attempt to change the color of my download button to blue, I need to alter:
- The border
- The text "Download As..."
- The right down arrow
My attempted solutions include:
Inserting this code: color="blue"
and applying this CSS styling
#makeMeBlue {
color: blue;
border: blue 1px solid;
}
Any suggestions on how to achieve this would be greatly appreciated.