1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| .clipboardInput{
| text-align: center;
|
| .copied{
| position: absolute;
| font-size: 70%;
| left: 50%;
| width: 110px;
| margin-left: -55px;
| border-bottom-left-radius: 2px;
| border-bottom-right-radius: 2px;
| padding: 2px;
| opacity: 0;
| transition: opacity .2s ease-in-out;
|
| &.show{
| opacity: 1;
| }
| }
| }
|
|