@charset "UTF-8";

@mixin text-selection($value: null) {
  @if not & and $value == null {
    ::selection {
      @content;
    }
  } @else if & and $value == "only" {
    &::selection {
      @content;
    }
  } @else if & and $value == null {
    &::selection,
    *::selection {
      @content;
    }
  }
}
