Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove ripple effect on icon button

I need to have an icon who make the button's job ( loading ) But I would remove this round button effect of this icon

How can I do this ? https://codepen.io/sebastiancz/pen/gOpjbar?editors=1010

<div id="app">
  <v-app id="inspire">
    <div class="text-xs-center">
      <div>
        <v-btn flat icon color="blue lighten-2">
          <v-icon>power</v-icon>
        </v-btn>
      </div>
    </div>
  </v-app>
</div>
like image 528
TheDevGuy Avatar asked Dec 04 '25 03:12

TheDevGuy


1 Answers

find it brother, use these both CSS and it will do the trick :

.v-btn:before {
  opacity: 0 !important;
}

.v-ripple__container {
  opacity: 0 !important;
}

let me know if it works or not, will help you further if it won't

like image 189
Anant Vikram Singh Avatar answered Dec 05 '25 18:12

Anant Vikram Singh



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!