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.

_drawer.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .drawer-portal {
  2. position: absolute;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. z-index: 351;
  7. border-radius: 16px 16px 0 0;
  8. &.notification-portal {
  9. z-index: 901;
  10. }
  11. }
  12. .drawer-portal::after {
  13. content: '';
  14. background-color: #141414;
  15. margin-bottom: env(safe-area-inset-bottom, 0);
  16. }
  17. .drawer-menu-container {
  18. height: 100vh;
  19. display: flex;
  20. align-items: flex-end;
  21. }
  22. .drawer-menu {
  23. overflow-y: auto;
  24. margin-bottom: env(safe-area-inset-bottom, 0);
  25. width: 100%;
  26. &#{&} .overflow-menu {
  27. margin: auto;
  28. font-size: 1.2em;
  29. list-style-type: none;
  30. padding: 0;
  31. height: calc(80vh - 144px - 64px);
  32. overflow-y: auto;
  33. .overflow-menu-item {
  34. box-sizing: border-box;
  35. height: 48px;
  36. padding: 12px 16px;
  37. align-items: center;
  38. color: #fff;
  39. cursor: pointer;
  40. display: flex;
  41. font-size: 16px;
  42. div {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. }
  47. &.disabled {
  48. cursor: initial;
  49. color: #3b475c;
  50. }
  51. }
  52. }
  53. }