forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeader.module.scss
More file actions
68 lines (57 loc) · 1.24 KB
/
Header.module.scss
File metadata and controls
68 lines (57 loc) · 1.24 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
@import "~common/stylesheet/index";
.header {
display: flex;
flex-direction: column;
min-width: 0;
.row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 16px;
border-bottom: 1px solid $theme-light;
.section {
height: $line-height;
display: flex;
align-items: stretch;
.title_bar {
font-size: $font-size-large;
font-weight: bold;
min-width: 0;
.nav_arrow {
margin: 0 4px;
}
.nav_caret {
margin-left: 4px;
}
.input_title {
padding: 4px 8px;
background-color: $theme-light;
}
}
.btn_dropdown {
position: relative;
font-weight: bold;
&:active {
box-shadow: none;
}
.dropdown {
z-index: 98;
position: absolute;
left: 0;
top: 0;
display: none;
flex-direction: column;
align-items: stretch;
box-shadow: 0 0 8px $color-shadow;
background-color: $theme-light;
margin-top: $line-height;
}
&:hover {
.dropdown {
display: flex;
}
}
}
}
}
}