App.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. // background-color: #a1a1a1;
  14. .Form{
  15. max-width: 400px;
  16. margin: 0 auto;
  17. padding: 20px;
  18. }
  19. }
  20. // .color{
  21. // background-color: rgb(138, 150, 95);
  22. // }
  23. .MainChatModal{
  24. // position: absolute;
  25. // top: 50%;
  26. // left: 50%;
  27. // transform: translate(-50%, -50%);
  28. // min-height: 10px;
  29. // width: 350px;
  30. // background-color: rgb(252, 252, 252);
  31. // border-radius: 10px;
  32. padding: 10px;
  33. &>div:nth-child(1){
  34. display: flex;
  35. justify-content: space-between;
  36. margin: 20px 10px 10px;
  37. }
  38. &>div:nth-child(2){
  39. display: flex;
  40. justify-content: end;
  41. }
  42. }
  43. .ModalBox{
  44. position: absolute;
  45. top: 50%;
  46. left: 50%;
  47. transform: translate(-50%, -50%);
  48. min-height: 50px;
  49. width: 350px;
  50. background-color: rgb(255, 255, 255);
  51. border-radius: 10px;
  52. // padding: 10px;
  53. }
  54. // .Message{
  55. // // display: inline;
  56. // width: 200px;
  57. // padding: 10px;
  58. // background-color: beige;
  59. // color: #000;
  60. // margin: 20px 0;
  61. // }