Contact Us

CATEGORIES

Whoops…Nothing found

Try other keywords in your search

Button: applying visual feedback

 0 Minutes

 0 Likes

 1025 Views

If you want a button that changes color upon a status change:

button{ background-color: red;   &::after{   content: " disconnected";   } }

.active{   background-color: green;   &::after{     content: " connected"; } }


Was this article helpful?