Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
488 B
2
Indexable
Never
/* 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;
    }
  }
}
Leave a Comment