diff --git a/frontend/src/metabase/components/EmptyState.jsx b/frontend/src/metabase/components/EmptyState.jsx index 2a4e5d56c68162c1fa6ec44ac74729c53e4d01de..a18124e60e03223f1ad35146a7bafea85be14548 100644 --- a/frontend/src/metabase/components/EmptyState.jsx +++ b/frontend/src/metabase/components/EmptyState.jsx @@ -15,7 +15,7 @@ const EmptyState = ({ title, message, icon, image, action, link }) => <img src={`${image}.png`} height="250px" alt={message} srcSet={`${image}@2x.png 2x`} /> } <div className="flex justify-center"> - <h3 className="text-grey-2 mt4" style={{maxWidth: "350px"}}>{message}</h3> + <h3 className="text-grey-2 mt4" style={{maxWidth: "375px"}}>{message}</h3> </div> { action && <Link to={link} className="Button Button--primary mt3" target={link.startsWith('http') ? "_blank" : ""}>{action}</Link> diff --git a/frontend/src/metabase/questions/containers/EntityList.jsx b/frontend/src/metabase/questions/containers/EntityList.jsx index cb8a6b8068f8628d8b61edc6d0269dd2e8f99c6d..7942a1e9f2d15cab6ea4c0990b4faa4dbc77484b 100644 --- a/frontend/src/metabase/questions/containers/EntityList.jsx +++ b/frontend/src/metabase/questions/containers/EntityList.jsx @@ -83,7 +83,7 @@ export default class EntityList extends Component { switch (this.props.name) { case 'All questions': return { - icon: '', + icon: 'all', message: 'No questions have been saved yet.' } case 'Recently viewed': @@ -109,7 +109,7 @@ export default class EntityList extends Component { case 'Archive': return { icon: 'archive', - message: 'If you no longer need a question you can archive it.' + message: 'If you no longer need a question, you can archive it.' } default: return { diff --git a/frontend/src/metabase/questions/containers/UndoListing.css b/frontend/src/metabase/questions/containers/UndoListing.css index ca95ef69945b55503e7265f417e8a7301e213b3b..f32245dd586438f7e49a7d3c524a1f3c92dbbc6b 100644 --- a/frontend/src/metabase/questions/containers/UndoListing.css +++ b/frontend/src/metabase/questions/containers/UndoListing.css @@ -7,13 +7,13 @@ } :local(.undo) { - composes: mx2 mt2 p2 from "style"; + composes: mt2 p2 from "style"; composes: bordered from "style"; composes: rounded from "style"; composes: shadowed from "style"; composes: relative from "style"; composes: bg-white from "style"; - width: 300px; + width: 320px; } :local(.actions) {