.yasqe {
  .CodeMirror {
    min-height: 60px;
  }
  .svgImg {
    display: inline-block;
  }
  span.shortlinkErr {
    font-size: small;
    color: red;
    font-weight: bold;
    float: left;
  }
  .CodeMirror-hint {
    max-width: 30em;
  }
  .notificationContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
  }
  .notification {
    z-index: 4;
    padding: 0 5px;
    max-height: 0px;
    color: #999;
    background-color: #eee;
    font-size: 90%;
    text-align: center;
    transition: max-height 0.2s ease-in;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
  }
  .notification.active {
    max-height: 3rem;
  }

  .parseErrorIcon {
    width: 13px;
    height: 13px;
    margin-top: 2px;
    margin-left: 2px;
    svg {
      g {
        fill: red;
      }
    }
  }

  .yasqe_tooltip {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    color: #fff;
    padding: 5px 15px;
    width: 220px;
    white-space: pre-wrap;
    white-space: normal;
    margin-top: 5px;
  }
  .notificationLoader {
    width: 18px;
    height: 18px;
    vertical-align: middle;
  }
  .resizeWrapper {
    width: 100%;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: row-resize;
  }
  .resizeChip {
    width: 20%;
    height: 4px;
    background-color: #d1d1d1;
    visibility: hidden;
    border-radius: 2px;
  }
  // Show resizeChip when yasqe is hovered
  &:hover {
    .resizeChip {
      visibility: visible;
    }
  }
}
