Skip to content
Snippets Groups Projects
Commit 5d68778a authored by Kyle Doherty's avatar Kyle Doherty
Browse files

fix width of segment / metric builders

parent fb5cfc68
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,8 @@ export default class MetricForm extends Component {
return (
<LoadingAndErrorWrapper loading={!tableMetadata}>
{ () =>
<form onSubmit={handleSubmit}>
<div className="wrapper py4">
<form className="full wrapper" onSubmit={handleSubmit}>
<div className="py4">
<FormLabel
title={(metric && metric.id != null ? "Edit" : "Create") + " Your Metric"}
description={metric && metric.id != null ?
......
......@@ -65,8 +65,8 @@ export default class SegmentForm extends Component {
return (
<LoadingAndErrorWrapper loading={!tableMetadata}>
{ () =>
<form onSubmit={handleSubmit}>
<div className="wrapper py4">
<form className="full wrapper" onSubmit={handleSubmit}>
<div className="py4">
<FormLabel
title={(segment && segment.id != null ? "Edit" : "Create") + " Your Segment"}
description={segment && segment.id != null ?
......
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