-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description Revamped the documentation UI using guidelines provided by the designer. - Added `tailwindcss` support - Ejected and reworked the `Footer` - Replaced the font with `Poppins` - Following the guidelines, improved some UI styles and buttons **NOTE: The `pwa` folder needs to be aligned with the new Desmos icon, please @RiccardoM have a look.** Closes: DW-11 <!-- Add a description of the changes that this PR introduces and the files that are the most critical to review. --> --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://docs.cosmos.network/v0.44/building-modules/intro.html) - [ ] included the necessary unit and integration [tests](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable) --------- Co-authored-by: Riccardo Montagnin <[email protected]>
- Loading branch information
Showing
63 changed files
with
1,636 additions
and
353 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 |
---|---|---|
|
@@ -3,23 +3,24 @@ name: Build docs preview | |
# It runs on every push to master with a change in the docs folder. | ||
on: | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- "x/**/*.md" | ||
- .github/workflows/deploy-docs.yml | ||
|
||
jobs: | ||
Build-preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
- name: Compute diff 📜 | ||
uses: technote-space/[email protected] | ||
id: git_diff | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
path: "." | ||
PATTERNS: | | ||
*.md | ||
docs/**/*.* | ||
- name: Setup Node.js 🔧 | ||
if: env.GIT_DIFF | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
|
@@ -28,9 +29,11 @@ jobs: | |
docs/yarn.lock | ||
- name: Build 🔧 | ||
if: env.GIT_DIFF | ||
run: make build-docs && mv ~/output ./output | ||
|
||
- name: Deploy preview to Netlify 🚀 | ||
if: env.GIT_DIFF | ||
id: deploy-preview | ||
uses: nwtgck/[email protected] | ||
with: | ||
|
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
Oops, something went wrong.