Skip to content

Commit

Permalink
fix: add tooltip into index
Browse files Browse the repository at this point in the history
  • Loading branch information
ui2code committed Nov 25, 2019
1 parent 8ad8a0c commit c3924bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions lib/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,11 @@ var SuggestionsStyle = {
'is-active': 'suggestions__is-active___288Mi',
'is-disabled': 'suggestions__is-disabled___1u8LV'
};
var TagStylefrom = {
var TagStyle = {
'tag': 'tag__tag___2iK57',
'tag-close': 'tag__tag-close___3cGKN'
};
var TooltipStyle = {};
var TransferStyle = {
'transfer': 'transfer__transfer___33_mW',
'transfer-box': 'transfer__transfer-box___3SsjW',
Expand Down Expand Up @@ -424,7 +425,8 @@ var styles = {
progressBar: ProgressBarStyle,
selectWithTags: SelectWithTagsStyle,
suggestions: SuggestionsStyle,
tag: TagStylefrom,
tag: TagStyle,
tooltip: TooltipStyle,
transfer: TransferStyle
};

Expand Down
6 changes: 4 additions & 2 deletions source/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import PlaceholderStyle from './scss/06-components/placeholder.scss';
import ProgressBarStyle from './scss/06-components/progress-bar.scss';
import SelectWithTagsStyle from './scss/06-components/select-with-tags.scss';
import SuggestionsStyle from './scss/06-components/suggestions.scss';
import TagStylefrom from './scss/06-components/tag.scss';
import TagStyle from './scss/06-components/tag.scss';
import TooltipStyle from './scss/06-components/tooltip.scss';
import TransferStyle from './scss/06-components/transfer.scss';

const styles = {
Expand Down Expand Up @@ -58,7 +59,8 @@ const styles = {
progressBar: ProgressBarStyle,
selectWithTags: SelectWithTagsStyle,
suggestions: SuggestionsStyle,
tag: TagStylefrom,
tag: TagStyle,
tooltip: TooltipStyle,
transfer: TransferStyle
};

Expand Down

0 comments on commit c3924bf

Please sign in to comment.