fix: copy button text no longer searchable

This commit is contained in:
Henk Verlinde 2022-01-14 16:45:32 +01:00
parent 0e09981fc8
commit 8fcd777a2d
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ pre {
.btn-copy {
transition: opacity 0.3s ease-in-out;
opacity: 0;
visibility: hidden !important;
position: absolute;
right: 0.25rem;
top: 0.25rem;
@ -105,7 +105,7 @@ pre {
@include media-breakpoint-up(md) {
pre:hover .btn-copy {
opacity: 1;
visibility: visible !important;
}
}