blob: f5ff73a92279a4913e47ecf95f5d62c2a03083c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
.copyable-link-confirmation {
position: fixed;
bottom: 60px;
right: 12px;
height: 60px;
line-height: 60px;
max-width: calc(100% - 140px);
z-index: 42000;
border: solid thin var(--content-color-40);
background-color: var(--white);
background-repeat: no-repeat;
background-position: 1em center;
background-size: 100px;
box-shadow: 5px 5px var(--dark-gray-color-10);
padding: 5px 100px;
transition: transform .5s ease;
&.copyable-link-success {
@include background-icon(check-circle, status-green, 24);
}
&.copyable-link-error {
@include background-icon(decline-circle, status-red, 24);
}
}
|