openreplay/frontend/app/components/shared/TrackingCodeModal/InstallDocs/installDocs.css
2021-05-01 15:12:01 +05:30

29 lines
No EOL
531 B
CSS

@import 'zindex.css';
.snippetWrapper {
position: relative;
& .codeCopy {
position: absolute;
right: 10px;
top: 10px;
z-index: $codeSnippet;
padding: 5px 10px;
color: $teal;
text-transform: uppercase;
cursor: pointer;
border-radius: 3px;
transition: all 0.4s;
user-select: none;
&:hover {
background-color: $gray-light;
transition: all 0.2s;
}
}
& .snippet {
overflow: hidden;
line-height: 20px;
border-radius: 5px;
user-select: none;
}
}