[TSVB] Removes unused css (#113751)

* [TSVB] Removes unused css

* Use size l for the tabs

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Stratoula Kalafateli 2021-10-06 09:15:21 +03:00 committed by GitHub
parent 0b33432c9f
commit 12dcc9e7b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 7 deletions

View file

@ -7,7 +7,6 @@
@import './series_editor';
@import './vis_editor';
@import './vis_editor_visualization';
@import './vis_picker';
@import './vis_with_splits';
@import './aggs/index';

View file

@ -1,4 +0,0 @@
.tvbVisPickerItem {
font-size: $euiFontSizeM;
font-weight: $euiFontWeightMedium;
}

View file

@ -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`}