mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
added max-widths to explore start pages boxes
This commit is contained in:
parent
1fddb6144d
commit
401b470ebb
@ -8,7 +8,7 @@ interface Props {
|
||||
export default class LoggingStartPage extends PureComponent<Props> {
|
||||
render() {
|
||||
return (
|
||||
<div className="grafana-info-box">
|
||||
<div className="grafana-info-box grafana-info-box--max-lg">
|
||||
<LoggingCheatSheet onClickExample={this.props.onClickExample} />
|
||||
</div>
|
||||
);
|
||||
|
@ -8,7 +8,7 @@ interface Props {
|
||||
export default class PromStart extends PureComponent<Props> {
|
||||
render() {
|
||||
return (
|
||||
<div className="grafana-info-box">
|
||||
<div className="grafana-info-box grafana-info-box--max-lg">
|
||||
<PromCheatSheet onClickExample={this.props.onClickExample} />
|
||||
</div>
|
||||
);
|
||||
|
@ -32,6 +32,10 @@
|
||||
a {
|
||||
@extend .external-link;
|
||||
}
|
||||
|
||||
&--max-lg {
|
||||
max-width: map-get($grid-breakpoints, 'lg');
|
||||
}
|
||||
}
|
||||
|
||||
.grafana-info-box__close {
|
||||
|
Loading…
Reference in New Issue
Block a user