save: ability to copy-to-clipboard

This commit is contained in:
muerwre 2018-12-12 12:22:49 +07:00
parent e53ef85ae9
commit f4e2142b15
5 changed files with 61 additions and 6 deletions

View file

@ -70,6 +70,24 @@
white-space: nowrap;
}
.save-address-copy {
background: rgba(255, 255, 255, 0.1);
padding: 0 5px;
border-radius: 0 @panel_radius @panel_radius 0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 250ms;
&:hover {
background: rgba(255, 255, 255, 0.2);
}
svg {
fill: white;
}
}
.save-text {
padding: 10px;
line-height: 1.1em;