userInfo.scss 272 B

12345678910111213141516
  1. .hidden {
  2. display: none;
  3. transform: translateX(-100%);
  4. }
  5. .active {
  6. display: block;
  7. transition: all 1 linear;
  8. background-color:rgb(30, 45, 52);
  9. border-radius: 5px;
  10. padding: 5px;
  11. font-weight: 700;
  12. text-align: center;
  13. color:azure;
  14. }