Answers for "react use global css"

CSS
0

react use global css classes

:global {
    .tweet {
        text-align: left;
    }
    .user {
        text-align: left;
    }   
}
Posted by: Guest on June-20-2021
0

react use global css

:global(.myclass) {
  background-color: red;
}
Posted by: Guest on June-20-2021

Browse Popular Code Answers by Language