link-page.component.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .content {
  2. // --padding-bottom: 50px;
  3. --background: #fff;
  4. .nav-data{
  5. position: fixed;
  6. top: 20px;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. width: 100%;
  11. padding: 10px;
  12. color: white;
  13. .room-data{
  14. background-color: rgb(0 0 0 / 40%);
  15. display: flex;
  16. width: 160px;
  17. justify-content: space-between;
  18. align-items: center;
  19. border-radius: 40px;
  20. padding: 4px;
  21. .avatar{
  22. width: 36px;
  23. height: 36px;
  24. }
  25. .profile-title{
  26. display: flex;
  27. flex-direction: column;
  28. align-items: start;
  29. justify-content: space-around;
  30. margin-left: 4px;
  31. flex: 1;
  32. .profile-name{
  33. font-size: 14px;
  34. }
  35. .level{
  36. background-color: #cc59de;
  37. text-align: center;
  38. font-size: 12px;
  39. border-radius: 20px;
  40. padding: 0px 6px;
  41. }
  42. }
  43. ion-icon{
  44. margin-left: 10px;
  45. font-size: 30px;
  46. }
  47. }
  48. .report,.exit{
  49. background-color: rgb(0 0 0 / 40%);
  50. color: white;
  51. border-radius: 50%;
  52. width: 36px;
  53. height: 36px;
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. ion-icon{
  58. font-size: 26px;
  59. }
  60. }
  61. }
  62. }