1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00

Merge pull request #23 from zulfadhli4141/master

Add cursor: pointer to button
This commit is contained in:
Jenil Gogari
2018-12-08 16:27:08 -05:00
committed by GitHub
4 changed files with 11 additions and 8 deletions

1
dist/chota.css vendored
View File

@@ -340,6 +340,7 @@ button {
-webkit-transform: scale(1); -webkit-transform: scale(1);
transform: scale(1); transform: scale(1);
display: inline-block; display: inline-block;
cursor: pointer;
} }
.grouped { .grouped {
display: -webkit-box; display: -webkit-box;

2
dist/chota.min.css vendored

File diff suppressed because one or more lines are too long

View File

@@ -5,9 +5,9 @@
"main": "dist/chota.min.css", "main": "dist/chota.min.css",
"scripts": { "scripts": {
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'", "start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c", "build": "rm -r dist/ && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c",
"postcss": "postcss ./src/chota.css -d dist/", "postcss": "postcss ./src/chota.css -d dist/",
"watch": "NODE_ENV=development yarn postcss -w", "watch": "cross-env NODE_ENV=development yarn postcss -w",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [ "keywords": [
@@ -26,12 +26,13 @@
"url": "https://github.com/jenil/chota/issues" "url": "https://github.com/jenil/chota/issues"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^9.0.1", "autoprefixer": "^9.4.2",
"browser-sync": "^2.18.8", "browser-sync": "^2.26.3",
"cssnano": "^4.0.4", "cross-env": "^5.2.0",
"postcss-cli": "^6.0.0", "cssnano": "^4.1.7",
"postcss-cli": "^6.0.1",
"postcss-csso": "^3.0.0", "postcss-csso": "^3.0.0",
"postcss-import": "^11.1.0" "postcss-import": "^12.0.1"
}, },
"files": [ "files": [
"src/", "src/",

View File

@@ -80,6 +80,7 @@ button {
text-decoration: none; text-decoration: none;
transform: scale(1); transform: scale(1);
display: inline-block; display: inline-block;
cursor: pointer;
} }
.grouped { .grouped {