EditorHeader.scss
697 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
.my-header {
position: fixed;
width: 100%;
height: 50px;
//background: white;
z-index: 10;
button {
float: right;
height: 35px;
margin-top: 20px;
font-size: 14px;
border: none;
border-radius: 5px;
margin-right: 10px;
cursor: pointer;
&:focus {
outline: none;
}
}
.submenu-toggle {
position: absolute;
left: 90px;
background: none;
color: gray;
font-size: 20px;
&.activate {
color: white;
}
&:hover {
transform: scale(1.15);
transition: 0.2s;
}
}
.file-box {
.file-box-button {
//background: white;
}
#input-image-file {
display: none;
}
}
}