Не отображается кнопка в WebView IOS
Не отображается кнопка именно в реализации webview на IOS, подскажите, с чем может быть связано, на пк отображается корректно, так же корректно на Android
Прикладываю стили кнопки:
.CloseButton {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 40px;
width: 40px;
cursor: pointer;
border-radius: 50%;
background: none;
border: none;
color: rgb(0, 0, 0, 1);
font-size: 30px;
transition: 0.2s;
}
.CloseBtn:hover {
color: var(--accent-color);
}