mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 20:08:29 -04:00
26 lines
402 B
SCSS
26 lines
402 B
SCSS
.copy_button {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 0.75em;
|
|
line-height: 1;
|
|
color: var(--text);
|
|
background-color: var(--background-inner);
|
|
border: 1px solid var(--kinda-light);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: var(--link);
|
|
}
|
|
|
|
.octicon {
|
|
width: 16px;
|
|
height: 16px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.octicon-check {
|
|
color: var(--success);
|
|
}
|
|
}
|