Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

67 行
1.3 KiB

  1. .top-bar-holder {
  2. background-image: url('../../assets/custom/background-5.svg');
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. background-position: left top;
  6. padding-top: 80px;
  7. }
  8. .header-bar {
  9. color: white;
  10. display: flex;
  11. padding: 20px;
  12. align-items: center;
  13. background-image: url('../../assets/custom/background-5.svg');
  14. background-size: cover;
  15. background-repeat: no-repeat;
  16. background-position: left top;
  17. position: fixed;
  18. left: 0;
  19. top: 0;
  20. z-index: 2;
  21. width: 100%;
  22. h2 {
  23. font-size: 20px;
  24. margin: 0 auto 0 10px;
  25. }
  26. button {
  27. margin: 0;
  28. border-radius: 50%;
  29. color: var(--brand-blue);
  30. width: 30px;
  31. height: 30px;
  32. background-color: white;
  33. font-size: 14px;
  34. ion-icon[name="arrow-back"] {
  35. font-size: 18px;
  36. }
  37. }
  38. }
  39. .tabs-holder {
  40. width: 100%;
  41. padding: 0 20px 20px;
  42. overflow: scroll;
  43. white-space: nowrap;
  44. button {
  45. display: inline-block;
  46. border-radius: 20px;
  47. background-color: transparent;
  48. color: white;
  49. font-size: 10px;
  50. padding: 5px 15px;
  51. height: 30px;
  52. margin-right: 10px;
  53. font-weight: bold;
  54. &.active {
  55. background-color: white;
  56. color: var(--brand-blue);
  57. }
  58. }
  59. }