mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 16:27:02 -06:00
19 lines
288 B
SCSS
19 lines
288 B
SCSS
.dashboard-settings {
|
|
opacity: 0;
|
|
display: block;
|
|
padding: $spacer*2;
|
|
}
|
|
|
|
.dashboard-page--settings-opening {
|
|
.dashboard-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.dashboard-page--settings-open {
|
|
.dashboard-settings {
|
|
opacity: 1;
|
|
transition: opacity 250ms ease-in-out;
|
|
}
|
|
}
|