Кастомизированный скроллбар в safari

В мобильной версии в браузере safari, не отображается скроллбар с кастомизироваными стилями. Скроллить можно, но это не очевидно.сафари

В хроме такой проблемы нет. введите сюда описание изображения

Код:

.form__basket-content {
  max-width: 500px;
  max-height: 200px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.form__basket-content::-webkit-scrollbar {
  display: inherit;
  width: 5px;
  height: 100%;
  background: lightgrey;
}

.form__basket-content::-webkit-scrollbar-track {
  background: grey;
  border-radius: 10px;
  min-width: 5px;
}

.form__basket-content::-webkit-scrollbar-thumb:vertical,
.form__basket-content::-webkit-scrollbar-thumb {
  background: #D01E71;
  border-radius: 10px;
  min-width: 5px;
}

.form__basket-content::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  background: #A71F5E;
}
<div class='form__basket-content'>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
    survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
    software like Aldus PageMaker including versions of Lorem Ipsum
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
    survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
    software like Aldus PageMaker including versions of Lorem Ipsum
  </div>
  <div>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
    survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
    software like Aldus PageMaker including versions of Lorem Ipsum
  </div>
</div>

В чем может быть проблема?


Ответы (0 шт):