Untitled
unknown
plain_text
a year ago
488 B
10
Indexable
/* Style for tick mark in Safari */
@media not all and (min-resolution: 0.001dpcm) {
@supports (-webkit-appearance: none) {
.dropdown-option.selected-tick {
position: relative;
}
.dropdown-option.selected-tick::after {
content: '✔'; /* Unicode character for the tick mark */
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
color: #007aff; /* Customize the tick color */
font-size: 16px;
}
}
}
Editor is loading...
Leave a Comment