@charset "utf-8";
@import "../variable/color";

@mixin _setLine($c:$ysui-c8) {
  content: " ";
  position: absolute;
  color: $c;
}

@mixin setTopLine($c:$ysui-c8) {
  @include _setLine($c);
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid $c;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}

@mixin setBottomLine($c:$ysui-c8) {
  @include _setLine($c);
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid $c;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}

@mixin setLeftLine($c:$ysui-c8) {
  @include _setLine($c);
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px solid $c;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}

@mixin setRightLine($c:$ysui-c8) {
  @include _setLine($c);
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-right: 1px solid $c;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}
