user.scss 480 B

1234567891011121314151617181920212223242526272829303132
  1. .home {
  2. background: #EDEDED;
  3. }
  4. .item {
  5. width: 92%;
  6. background: #FFFFFF;
  7. margin: 20px auto;
  8. padding: 30px;
  9. border-radius: 20px;
  10. display: flex;
  11. flex-direction: row;
  12. align-items: center;
  13. justify-content: space-between;
  14. }
  15. .exit {
  16. width: 92%;
  17. background: red;
  18. position: absolute;
  19. bottom: 60px;
  20. left: 4%;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. color: #FFFFFF;
  25. font-size: 28px;
  26. padding: 20px 0;
  27. border-radius: 10px;
  28. }