EditorHeader.scss 718 Bytes
.my-header {
  position: fixed;
  width: 100%;
  height: 50px;
  //background: white;
  z-index: 10;

  button {
    float: right;
    height: 35px;
    margin-top: 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    padding: 0 10px;

    &:focus {
      outline: none;
    }
  }

  .submenu-toggle {
    position: absolute;
    left: 90px;
    background: none;
    color: gray;
    font-size: 20px;

    &.activate {
      color: white;
    }

    &:hover {
      transform: scale(1.15);
      transition: 0.2s;
    }
  }

  .file-box {
    .file-box-button {
      //background: white;
    }

    #input-image-file {
      display: none;
    }
  }
}