Project: Mall App Client: Maiora
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bookmark.page.scss 1.0 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .header-bar {
  2. background-image: url('../../assets/custom/background-5.svg');
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. background-position: left top;
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 15px;
  10. height: 75px;
  11. z-index: 3;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. position: sticky;
  16. box-shadow: 0px 3px 5px var(--brand-grey);
  17. .heading-holder {
  18. display: flex;
  19. align-items: center;
  20. }
  21. button, a {
  22. background-color: white;
  23. color: var(--brand-blue);
  24. font-size: 18px;
  25. padding: 5px;
  26. border-radius: 50%;
  27. height: 30px;
  28. width: 30px;
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. &.active {
  33. color: white;
  34. background-color: var(--brand-blue);
  35. }
  36. }
  37. h3 {
  38. font-size: 16px;
  39. color: white;
  40. letter-spacing: 0.5px;
  41. margin-left: 10px;
  42. font-weight: 600;
  43. }
  44. }