Skip to content

Commit

Permalink
[TSVB] Removes unused css (#113751)
Browse files Browse the repository at this point in the history
* [TSVB] Removes unused css

* Use size l for the tabs

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
stratoula and kibanamachine authored Oct 6, 2021
1 parent 0b33432 commit 12dcc9e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
@import './series_editor';
@import './vis_editor';
@import './vis_editor_visualization';
@import './vis_picker';
@import './vis_with_splits';

@import './aggs/index';
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ interface VisPickerProps {

export const VisPicker = ({ onChange, currentVisType }: VisPickerProps) => {
return (
<EuiTabs>
<EuiTabs size="l">
{tabs.map(({ label, type }) => (
<EuiTab
key={type}
className="tvbVisPickerItem"
isSelected={type === currentVisType}
onClick={() => onChange({ type })}
data-test-subj={`${type}TsvbTypeBtn`}
Expand Down

0 comments on commit 12dcc9e

Please sign in to comment.