You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
2.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. .layout{
  2. .header{
  3. height: 60px;
  4. width: 100%;
  5. display: flex;
  6. align-items: center;
  7. justify-content: space-between;
  8. position: fixed;
  9. inset: 0;
  10. background-color: $page;
  11. z-index: 1;
  12. .notify-circle{
  13. width: 6px;
  14. height: 6px;
  15. border-radius: 3px;
  16. background-color: $red;
  17. }
  18. }
  19. .header-block{
  20. height: 60px;
  21. &::before{
  22. content: " ";
  23. }
  24. }
  25. .header-bg-color{
  26. color: $white;
  27. background-image: url('../assets/header-bg.png');
  28. background-size: 100% 100%;
  29. background-repeat: no-repeat;
  30. }
  31. .pages{
  32. height: 100%;
  33. width: 100%;
  34. overflow: hidden;
  35. overflow-y: scroll;
  36. &::-webkit-scrollbar{display: none;}
  37. }
  38. .tabbar{
  39. width: 370px;
  40. height: 65px;
  41. position: fixed;
  42. left: 30px;
  43. background-color: $white;
  44. bottom: 20px;
  45. box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.1);
  46. border-radius: 40px;
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-between;
  50. padding: 0px 40px;
  51. .img{
  52. @include img-size(24px,24px)
  53. }
  54. .circle{
  55. width: 6px;
  56. height: 6px;
  57. border-radius: 3px;
  58. background-color: $primary;
  59. }
  60. }
  61. .tabbar-block{
  62. display: block;
  63. height: 100px;
  64. width: 100%;
  65. }
  66. }
  67. .rv-popup::-webkit-scrollbar{
  68. display: none;
  69. }
  70. .notify-box{
  71. padding: 10px 20px;
  72. border: 1px solid #eeeeee;
  73. box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.1);
  74. border-radius: 10px;
  75. .img{
  76. @include img-size(32px,32px)
  77. }
  78. }
  79. .rv-popup{
  80. position: relative;
  81. .close{
  82. position: absolute;
  83. top: 49%;
  84. left: 0;
  85. }
  86. }
  87. .connect-button{
  88. .button{
  89. margin: 0;
  90. padding: 0;
  91. width: 126px;
  92. height: 32px;
  93. border-radius: 5px;
  94. border: none;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. }
  99. .rv-popover__content{
  100. width: 126px;
  101. }
  102. }