Skip to content
Snippets Groups Projects
Unverified Commit 860da8a8 authored by Maz Ameli's avatar Maz Ameli Committed by GitHub
Browse files

Merge pull request #7610 from metabase/issue-7602

Remove unnecessary use of flex-full on new query options
parents 24732a57 38cea44d
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ export default class MetadataTable extends Component {
}
return (
<div className="MetadataTable px3 flex-full">
<div className="MetadataTable px3">
<div className="MetadataTable-title flex flex-column bordered rounded">
<Input
className="AdminInput TableEditor-table-name text-bold border-bottom rounded-top"
......
......@@ -5,7 +5,7 @@ const SettingHeader = ({ setting }) => (
<div className="text-grey-4 text-bold text-uppercase">
{setting.display_name}
</div>
<div className="text-grey-4 my1">
<div className="text-grey-4 text-measure my1">
{setting.description}
{setting.note && <div>{setting.note}</div>}
</div>
......
......@@ -20,7 +20,7 @@ export default class AdminLayout extends Component {
<AdminHeader ref="header" title={title} />
<div className="MetadataEditor-main flex flex-row flex-full mt2">
{sidebar}
<div className="px2 flex-full">{children}</div>
<div className="px2 full">{children}</div>
</div>
</div>
);
......
......@@ -126,12 +126,12 @@ export class NewQueryOptions extends Component {
return (
<div className="full-height flex">
<div className="wrapper wrapper--trim lg-wrapper--trim xl-wrapper--trim flex-full px4 mt4 mb2 align-center">
<div className="wrapper wrapper--trim lg-wrapper--trim xl-wrapper--trim px4 mt4 mb2 align-center">
<div
className="flex align-center justify-center"
style={{ minHeight: "100%" }}
>
<ol className="flex-full Grid Grid--guttersXl Grid--full sm-Grid--normal">
<ol className="Grid Grid--guttersXl Grid--full sm-Grid--normal">
{showMetricOption && (
<li className="Grid-cell">
<NewQueryOption
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment