Skip to content

Commit 437d65d

Browse files
author
Adrian Bece
committed
Initial commit
0 parents  commit 437d65d

9 files changed

Lines changed: 14364 additions & 0 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
.parcel-cache
4+
index.html

.parcelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": ["@parcel/config-default"],
3+
"reporters": ["parcel-reporter-static-files-copy"]
4+
}

.prettierrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "none",
4+
"arrowParens": "avoid",
5+
"overrides": [
6+
{
7+
"files": "*.scss",
8+
"options": {
9+
"printWidth": 120,
10+
"singleQuote": false
11+
}
12+
}
13+
]
14+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Clay.css
2+
3+
Extensible and configurable micro CSS class and SASS mixin for adding claymorphism styles to your components.

0 commit comments

Comments
 (0)