mirror of
https://github.com/prometheus/prometheus.git
synced 2025-08-06 06:07:11 +02:00
16 lines
234 B
CSS
16 lines
234 B
CSS
.codebox {
|
|
background-color: light-dark(
|
|
var(--mantine-color-gray-1),
|
|
var(--mantine-color-gray-9)
|
|
);
|
|
}
|
|
|
|
.queryButton {
|
|
opacity: 0;
|
|
transition: opacity 0.1s ease-in-out;
|
|
}
|
|
|
|
.codebox:hover .queryButton {
|
|
opacity: 1;
|
|
}
|