The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/sass/components/edit_sidemenu.scss

49 lines
673 B

.edit-tab-with-sidemenu {
display: flex;
flex-direction: row;
}
.edit-tab-content {
flex-grow: 1;
min-width: 0;
}
.edit-sidemenu-aside {
margin-right: $spacer*2;
}
.edit-sidemenu {
width: 100%;
list-style: none;
li.active {
@include left-brand-border-gradient();
}
a {
display: block;
color: $text-color;
margin: 0 0 1.5rem 1rem;
white-space: nowrap;
}
}
@include media-breakpoint-down(sm) {
.edit-tab-with-sidemenu {
flex-direction: column;
}
.edit-sidemenu-aside {
width: 100%;
margin-bottom: 2rem;
}
.edit-sidemenu {
li {
float: left;
}
a {
margin: 0.3rem 1rem;
}
}
}