Setting css pseudo classes
-
quasar has special classes for setting the background and text. bg-? and text-?
Does quasar support manipulating the color property of pseudo classes in particular :hover?
For example say I want to set the hover color to red for a specific button (or a button of a component). Is there a way to add a “hover” class here?
<template> <div> <button class="bg-somecolor" @click="toggleload">{{desc}}</button> </div> </template>
-
looks like v-on mouseover is the solution