openreplay/frontend/app/components/shared/TrackingCodeModal/InstallDocs/installDocs.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

29 lines
No EOL
530 B
CSS

@import 'zindex.css';
.snippetWrapper {
position: relative;
& .codeCopy {
position: absolute;
right: 0px;
top: -3px;
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;
}
}