index.less 862 Bytes
.switchCompanyAndLanguage {
  width: auto;
  height: 100%;
  display: flex;

  :global {
    .company {
      width: auto;
      height: 100%;
      white-space: nowrap;
      // margin-right: 10px;
      cursor: pointer;
      display: flex;
      gap: 5px;

      .companyMutiLine {
        width: auto;
        height: 100%;

        >div {
          width: auto;
          height: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        >div:first-child {
          font-size: 12px;
        }
      }

      span {
        font-size: 13px !important;
      }
    }

    .language {
      width: auto;
      height: 100%;

      button {
        width: 25px;
        padding: 0;
        color: #FFF;
        font-size: 13px;

        &:hover {
          color: #1890ff;
        }
      }
    }
  }
}