-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve merge conflict in package-lock.json
- Loading branch information
Showing
8 changed files
with
273 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: 🐛 Bug | ||
description: Report an issue to help improve the project. | ||
labels: ["🛠 goal: fix", "🚦 status: awaiting triage"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A brief description of the question or issue, also include what you tried and what didn't work | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: 📄 Feature Request | ||
description: Want to add a new Feature? use this | ||
title: "[Feat] <description>" | ||
labels: ["📄 aspect: feature", "🚦 status: awaiting triage"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A brief description of the feature. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build and Test | ||
|
||
|
||
on: | ||
|
||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
|
||
jobs: | ||
build_test: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 15.x] | ||
|
||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm ci, build and test | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
npm test |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
.accordion { | ||
|
||
overflow: hidden; | ||
width: 100%; | ||
} | ||
|
||
.accordion-item { | ||
border-bottom: 1px solid #ddd; | ||
margin: 8px 0px; | ||
border: 1px solid #ddd; | ||
border-radius: 4px; | ||
} | ||
.expand{ | ||
width: 100%; | ||
max-width: 15px; | ||
} | ||
.accordion-title { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 15px; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
border-bottom: 1px solid #ddd; | ||
} | ||
|
||
.accordion-title:hover { | ||
background-color: #e0e0e0; | ||
} | ||
|
||
.accordion-title.active { | ||
background-color: #ddd; | ||
} | ||
|
||
.accordion-content { | ||
padding: 15px; | ||
background-color: lightcyan; | ||
} | ||
overflow: hidden; | ||
width: 100%; | ||
} | ||
|
||
.expand { | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.rotate { | ||
transform: rotate(180deg); | ||
} | ||
.accordion-item { | ||
border-bottom: 1px solid #ddd; | ||
margin: 8px 0px; | ||
border: 1px solid #ddd; | ||
border-radius: 4px; | ||
overflow: hidden; | ||
} | ||
.expand { | ||
width: 100%; | ||
max-width: 15px; | ||
} | ||
.accordion-title { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 15px; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
border-bottom: 1px solid #ddd; | ||
} | ||
|
||
.accordion-title:hover { | ||
background-color: #e0e0e0; | ||
} | ||
|
||
.accordion-title.active { | ||
background-color: #ddd; | ||
} | ||
|
||
.accordion-content { | ||
padding: 15px; | ||
background-color: lightcyan; | ||
} | ||
|
||
.expand { | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.rotate { | ||
transform: rotate(180deg); | ||
} |
Oops, something went wrong.