index.less
862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.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;
}
}
}
}
}