Skip to content

Commit 97d9ac6

Browse files
authored
fix: added a grid around all plugin sections (#3370)
1 parent 67ae6ff commit 97d9ac6

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/writeData/components/WriteDataSections.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {search as searchPlugins} from 'src/writeData/constants/contentTelegrafPl
1010
import {searchClients} from 'src/writeData'
1111

1212
// Components
13-
import {EmptyState, ComponentSize} from '@influxdata/clockface'
13+
import {EmptyState, ComponentSize, Grid} from '@influxdata/clockface'
1414
import FileUploadSection from 'src/writeData/components/FileUploadSection'
1515
import ClientLibrarySection from 'src/writeData/components/ClientLibrarySection'
1616
import TelegrafPluginSection from 'src/writeData/components/TelegrafPluginSection'
@@ -34,9 +34,17 @@ const WriteDataSections: FC = () => {
3434

3535
return (
3636
<>
37-
<FileUploadSection />
38-
<ClientLibrarySection />
39-
<TelegrafPluginSection />
37+
<Grid>
38+
<Grid.Row>
39+
<FileUploadSection />
40+
</Grid.Row>
41+
<Grid.Row>
42+
<ClientLibrarySection />
43+
</Grid.Row>
44+
<Grid.Row>
45+
<TelegrafPluginSection />
46+
</Grid.Row>
47+
</Grid>
4048
</>
4149
)
4250
}

0 commit comments

Comments
 (0)