index.scss 1.31 KB
@import './markdown.scss';
@import './nprogress.scss';
@import './element.scss';

html,
body {
  padding: 0;
  margin: 0;
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-thumb {
    background-color: #e5e5e5;
  }
}
#app {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, SimSun, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.side-menu__group {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
  .subtitle {
    font-weight: normal;
    color: $text;
    font-size: 14px;
  }
}

.demo-box {
  width: 300px;
}

.demo-model {
  padding: 0 !important;
}

.code-snippet-box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: flex-start;
  .code-snippet {
    flex: 1;
    min-width: 45%;
    box-sizing: border-box;
    margin-right: 16px;
  }
}

.eagle-schema__view {
  .el-form-item {
    font-weight: normal !important;
    margin-bottom: 0 !important;
    &__label {
      line-height: 1.5 !important;
      color: #595959 !important;
    }
    &__content {
      line-height: 1.5 !important;
      color: #000 !important;
    }
  }
}

@media only screen and (min-width: 1400px) {
  .code-snippet-box {
    .code-snippet {
      min-width: 30%;
    }
  }
}