.peek-component {
  position: fixed;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  z-index: 9999999;
  display: flex;
  align-items: center;

  &__wing {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    will-change: left;
  }

  &__inner {
    pointer-events: auto;
    flex: 1;
    position: relative;
    height: 100%;
  }
}
