-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHeader.less
More file actions
80 lines (68 loc) · 1.18 KB
/
Header.less
File metadata and controls
80 lines (68 loc) · 1.18 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@import '../../styles/Variables.less';
.header {
position: sticky;
top: 0;
background-color: @white;
width: 100%;
height: @header-height;
display: flex;
align-items: center;
border-bottom: 1px solid #c4c4c4;
z-index: 1;
}
.header-logo {
display: flex;
align-items: center;
padding-left: 3%;
padding-right: 10%;
height: inherit;
}
.header-logo > img {
width: 90px;
height: 80%;
}
.header-right-section {
width: 100%;
height: inherit;
display: flex;
justify-content: space-between;
padding: 0 20px;
}
.header-link-button-section {
display: flex;
}
.header-link-button-section > a {
margin: 0;
text-decoration: none;
}
.header-login {
display: flex;
align-items: center;
}
.header-icon {
font-size: @icon-font-size-big;
margin-right: 8px;
color: inherit;
}
.header-icon.syncing {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.action-buttons {
display: flex;
margin-left: auto;
}
// should be added in the scope of TECH-957
// .header-help-section {
// display: flex;
// align-items: center;
// height: 100%;
// gap: 4px;
// }