.drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.leftColumn,
.rightColumn {
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 8px;
  margin-left: 14px;
  cursor: pointer;
  opacity: 0.7;
  &:hover {
    opacity: 1;
  }
}

.doneButton {
  margin-right: 12px;
}

.copyButton {
  width: auto;
  color: #000;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.2s ease-out;
  padding: 4px ;
  &:before {
    content: 'COPY JSON';
    font-size: 12px;
    white-space: nowrap;
    position: relative;
    width: 1px;
    visibility: hidden;
  }
  &:hover {
    background-color: #eee;
    &:before {
      visibility: visible;
      padding: 0 6px;
      width: 64px;
    }
  }
}