Skip to content

Commit

Permalink
feat: Position and default size
Browse files Browse the repository at this point in the history
Merge and rename modifiers for positions

fix Wikiki#22
  • Loading branch information
Wikiki committed Jun 14, 2018
1 parent 54f452b commit 83bddd7
Show file tree
Hide file tree
Showing 14 changed files with 14,580 additions and 233 deletions.
Binary file added .DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"sourceMaps": false,
"ignore": ["node_modules/**"],
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": [ ">0.25%", "ie 11"]
}
}]
],
"env": {
"test": {
"presets": [["env"]]
}
},
"plugins": [
"transform-object-rest-spread"
]
}
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"globals": {
"ENV": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '9'
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
1 change: 0 additions & 1 deletion dist/bulma-tooltip.min.css

This file was deleted.

1 change: 1 addition & 0 deletions dist/css/bulma-tooltip.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bulma-tooltip.sass → dist/css/bulma-tooltip.sass
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ $tooltip-max-width: 24rem !default

&.is-tooltip-multiline
&::before
//min-width: $tooltip-max-width
min-width: $tooltip-max-width
text-overflow: clip
white-space: normal
word-break: keep-all
Expand Down
Loading

0 comments on commit 83bddd7

Please sign in to comment.