-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathheader-bar--desktop.less
More file actions
75 lines (66 loc) · 1.22 KB
/
header-bar--desktop.less
File metadata and controls
75 lines (66 loc) · 1.22 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
.header-bar {
margin: 20px auto;
padding-top: 0;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
.auth-component {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
order: 6;
}
.logo-component {
/* border-right: 1px solid @dark-beige; */
padding-right: 15px;
}
.navigation-component {
display: flex;
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
.dropdown-menu {
border-radius: 3px;
border: 1px solid @dark-beige;
}
li {
// stylelint-disable-next-line max-nesting-depth, selector-max-specificity
.dropdown-menu {
width: auto;
white-space: nowrap;
}
}
}
.search-component {
.search-bar-component {
width: 100%;
}
.search-bar {
max-width: 100%;
}
}
.hamburger-component {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 6;
order: 6;
}
.app-drawer {
top: 0;
height: 100%;
}
.mask-menu {
top: 0;
}
.header-dropdown {
.account__icon {
width: 45px;
height: 45px;
}
}
&.mobile {
display: none;
}
}