-
Notifications
You must be signed in to change notification settings - Fork 1
/
_header.scss
50 lines (44 loc) · 1.04 KB
/
_header.scss
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
#header{
background:var(--white);
padding: 15px 10px 15px 65px;
position: fixed;
top: 0px;
left: 0;
width: 100vw;
z-index:50;
box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
.logo{
display:inline-block;
}
.header-right {
float: right;
margin-right:30px;
@include mq('phone'){
float: none;
display: block;
text-align: left;
}
.theme-icon{
display: inline-block;
vertical-align: super;
margin-right: 15px;
cursor:pointer;
color:var(--purple);
}
.user-details{
display:inline;
.user-image{
border-radius: 50%;
height:40px;
width:40px;
display:inline-block;
margin-right:10px;
}
.user-info{
display:inline-block;
vertical-align: top;
font-size: $small;
}
}
}
}