forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
54 lines (42 loc) · 867 Bytes
/
styles.scss
File metadata and controls
54 lines (42 loc) · 867 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
50
51
52
53
54
.sandpack-Navigator__container {
display: flex;
align-items: center;
background-color: rgb(245, 245, 245);
width: 100%;
padding: 0.5rem;
border-radius: 2px;
border-bottom: 1px solid #ddd;
&:first-child {
margin-left: 0;
}
&:last-child {
margin-left: 0;
}
}
.sandpack-Navigator__input {
background-color: white;
width: 100%;
padding: 0.25rem 0.5rem;
border-radius: 4px;
border: 1px solid #ddd;
font-size: 0.875rem;
margin: 0 0.25rem;
flex: 1;
}
.sandpack-Navigator__button {
transition: 0.3s ease background-color;
padding: 2px;
margin: 0 0.25rem;
font-size: 1.25rem;
background-color: transparent;
border: 0;
outline: 0;
display: flex;
align-items: center;
color: rgb(114, 114, 114);
vertical-align: middle;
cursor: pointer;
&:hover {
background-color: rgba(0, 0, 0, 0.1);
}
}