mirror of
https://github.com/jenil/chota.git
synced 2023-08-10 21:13:07 +03:00
pull from origin repo, removed dist/
This commit is contained in:
commit
d8e941bcd4
@ -4,8 +4,8 @@
|
||||
A really small CSS framework
|
||||
<br><br>
|
||||
<img src="https://img.shields.io/npm/v/chota.svg">
|
||||
<img src="https://img.shields.io/npm/dt/chota.svg">
|
||||
<img src="https://img.shields.io/github/issues/jenil/chota.svg">
|
||||
<a href="https://www.npmjs.com/package/chota"><img src="https://img.shields.io/npm/dt/chota.svg"></a>
|
||||
<a href="https://github.com/jenil/chota/issues"><img src="https://img.shields.io/github/issues/jenil/chota.svg"></a>
|
||||
</p>
|
||||
|
||||
<br>
|
||||
|
1
dist/chota.css
vendored
1
dist/chota.css
vendored
File diff suppressed because one or more lines are too long
15
package.json
15
package.json
@ -5,9 +5,9 @@
|
||||
"main": "dist/chota.min.css",
|
||||
"scripts": {
|
||||
"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/",
|
||||
"watch": "NODE_ENV=development yarn postcss -w",
|
||||
"watch": "cross-env NODE_ENV=development yarn postcss -w",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [
|
||||
@ -26,12 +26,13 @@
|
||||
"url": "https://github.com/jenil/chota/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^9.0.1",
|
||||
"browser-sync": "^2.18.8",
|
||||
"cssnano": "^4.0.4",
|
||||
"postcss-cli": "^6.0.0",
|
||||
"autoprefixer": "^9.4.2",
|
||||
"browser-sync": "^2.26.3",
|
||||
"cross-env": "^5.2.0",
|
||||
"cssnano": "^4.1.7",
|
||||
"postcss-cli": "^6.0.1",
|
||||
"postcss-csso": "^3.0.0",
|
||||
"postcss-import": "^11.1.0"
|
||||
"postcss-import": "^12.0.1"
|
||||
},
|
||||
"files": [
|
||||
"src/",
|
||||
|
@ -80,6 +80,7 @@ button {
|
||||
text-decoration: none;
|
||||
transform: scale(1);
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grouped {
|
||||
|
@ -50,7 +50,7 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 1rem 2rem;
|
||||
color: #555;
|
||||
color: var(--color-darkGrey);
|
||||
}
|
||||
|
||||
.nav .active:not(.button) {
|
||||
|
@ -17,7 +17,7 @@
|
||||
.tabs > a.active,
|
||||
.tabs > a:hover {
|
||||
opacity: 1;
|
||||
border-bottom: 2px solid #555;
|
||||
border-bottom: 2px solid var(--color-darkGrey);
|
||||
}
|
||||
|
||||
.tabs > a.active {
|
||||
|
Loading…
Reference in New Issue
Block a user