Dashboard - Show on Hover: Code Copy Button (#329)

This commit is contained in:
Brewhouse Digital 2023-11-07 10:21:31 -06:00 committed by GitHub
parent b83560401a
commit bc300b6540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,9 +30,17 @@
overflow: hidden;
.copy-button {
transition: all 300ms;
opacity: 0;
position: absolute;
top: 8px;
right: 8px;
}
&:hover {
.copy-button {
opacity: 1;
}
}
}
</style>