/*
 * @Author: 焦质晔
 * @Date: 2022-10-18 09:36:59
 * @Last Modified by: 焦质晔
 * @Last Modified time: 2024-11-05 18:59:50
 */
@use '../../style/src/themes' as *;
@use '../../style/src/mixins/reset' as *;

$prefix: '#{$qm-prefix}-search-tree';

.#{$prefix} {
  @include reset-component();
  height: 100%;
  .topper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    .el-input {
      flex: 1 0;
      margin-bottom: 8px;
    }
    .trigger {
      flex-shrink: 0;
      margin-left: 8px;
      margin-bottom: 8px;
      color: $primary-color;
      cursor: pointer;
    }
  }
  //
  &--small {
    .topper {
      .trigger {
        font-size: $font-size-sm;
      }
    }
    .el-tree {
      font-size: $font-size-sm;
    }
  }
}
