App.scss 650 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. *{
  2. box-sizing: border-box;
  3. }
  4. .App {
  5. text-align: center;
  6. font-family: 'Poppins', sans-serif;
  7. color: #e2e2e2;
  8. .RegisterPage{
  9. height: 100vh;
  10. display: flex;
  11. align-items: center;
  12. }
  13. .Form{
  14. max-width: 400px;
  15. margin: 0 auto;
  16. padding: 20px;
  17. }
  18. }
  19. .MainChatModal{
  20. padding: 10px;
  21. &>div:nth-child(1){
  22. display: flex;
  23. justify-content: space-between;
  24. margin: 20px 10px 10px;
  25. }
  26. &>div:nth-child(2){
  27. display: flex;
  28. justify-content: end;
  29. }
  30. }
  31. .ModalBox{
  32. position: absolute;
  33. top: 50%;
  34. left: 50%;
  35. transform: translate(-50%, -50%);
  36. min-height: 50px;
  37. width: 350px;
  38. background-color: rgb(255, 255, 255);
  39. border-radius: 10px;
  40. }