Skip to content

Commit

Permalink
🚀 new release 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelLaptev committed Jun 25, 2021
1 parent 46b8885 commit 4614c6e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ The plugin can parse local or JSON files from a URL link. You can populate any l
- Select any **ranges** from JSON file
- the **"skip" rule** for layers you won't populate
- Handle `null` values
- One Easter egg 🐰
- Resizeable plugin window

---
Expand All @@ -31,7 +30,7 @@ The plugin can parse local or JSON files from a URL link. You can populate any l

### Youtube demo

##### 🎥 [youtu.be/7CKYdDfLFDY]()
##### 🎥 [youtu.be/7CKYdDfLFDY](https://youtu.be/J9Hu2hNSWvE)

---

Expand Down Expand Up @@ -68,12 +67,16 @@ The JSON structure for the file should look like an array of objects.
```json
[
{
"key_string": "string #1",
"key_number": 1
"id": 1,
"name": "Shannah Judgkins",
"job": "Database Administrator II",
"image": "https://robohash.org/suntautvoluptatem.jpg?size=500x500&set=set1"
},
{
"key_string": "string #2",
"key_number": 2
"id": 2,
"name": "Silvester Hallwell",
"job": "Data Coordiator",
"image": "https://robohash.org/rerumautemenim.jpg?size=500x500&set=set1"
}
]
```
Expand Down
12 changes: 12 additions & 0 deletions src/app/components/elements/Button/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
background: var(--clr-accent-dark);
box-shadow: 0 2px 0 var(--clr-black);
}

&:active {
background: var(--clr-accent-dark);
box-shadow: 0 0 0 var(--clr-black);
transform: translateY(0);
}
}

.outline {
Expand Down Expand Up @@ -75,4 +81,10 @@
&:hover {
background: var(--clr-accent-dark);
}

&:active {
background: var(--clr-accent-dark);
box-shadow: 0 0 0 var(--clr-black);
transform: translateY(0);
}
}

0 comments on commit 4614c6e

Please sign in to comment.