forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_empty-state.scss
More file actions
60 lines (51 loc) · 1.02 KB
/
Copy path_empty-state.scss
File metadata and controls
60 lines (51 loc) · 1.02 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
@import "base/environment.scss";
.ic-EmptyStateList {
list-style-type: none;
margin: 0;
padding: 0;
}
.ic-EmptyStateList__Item {
padding: $ic-sp 0;
border-top: 1px dotted $ic-border-light;
&:first-of-type {
border-top: none;
}
}
.ic-EmptyStateList__BillboardWrapper {
margin: 0 auto;
@include breakpoint(tablet) {
max-width: 20rem;
}
}
.ic-EmptyStateButton {
appearance: none;
box-sizing: border-box;
cursor: pointer;
user-select: none;
touch-action: manipulation;
display: block;
width: 100%;
margin: 0;
padding: $ic-sp;
background: transparent;
border: 0.125rem dashed transparent;
border-radius: $ic-sp;
text-align: center;
color: $ic-border-light;
text-decoration: none;
&:focus,
&:hover {
outline: none;
color: $ic-link-color;
border-color: $ic-link-color;
text-decoration: none;
}
}
.ic-EmptyStateButton__SVG {
font-size: 13rem;
}
.ic-EmptyStateButton__Text {
@include fontSize($ic-font-size--medium);
display: block;
color: $ic-link-color;
}