mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Stop dashboard panel errors from visually overflowing their containers (#17214)
This commit is contained in:
parent
791215584c
commit
f736c4b930
2 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
|
|||
|
||||
export function PanelError({ error }) {
|
||||
return (
|
||||
<div className="load-error">
|
||||
<div className="load-error panel-content">
|
||||
<span aria-hidden="true" className="kuiIcon fa-exclamation-triangle"/>
|
||||
<span>{error}</span>
|
||||
</div>
|
||||
|
|
|
@ -362,6 +362,7 @@ dashboard-viewport-provider {
|
|||
flex: 1 0 auto;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
overflow: auto;
|
||||
|
||||
.fa-exclamation-triangle {
|
||||
font-size: 2em;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue