mirror of
https://github.com/grafana/grafana.git
synced 2025-01-24 07:17:08 -06:00
26 lines
387 B
SCSS
26 lines
387 B
SCSS
.grafana-info-box::before {
|
|
content: "\f05a";
|
|
font-family:'FontAwesome';
|
|
position: absolute;
|
|
top: -13px;
|
|
left: -8px;
|
|
font-size: 20px;
|
|
color: $blue;
|
|
}
|
|
|
|
.grafana-info-box {
|
|
position: relative;
|
|
background: $card-background;
|
|
box-shadow: $card-shadow;
|
|
padding: 1rem;
|
|
border-radius: 4px;
|
|
|
|
h5 {
|
|
margin-bottom: $spacer;
|
|
}
|
|
ul {
|
|
padding-left: $spacer;
|
|
}
|
|
}
|
|
|