Skip to content

Commit

Permalink
Merge branch 'master' into ap-monorepo-dapps
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilsan committed Sep 19, 2023
2 parents 8a6790b + 00ccfde commit 9ac148f
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
Expand Down
1 change: 1 addition & 0 deletions docs/api/program-rent.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
sidebar_position: 5
sidebar_label: Pay Program rent
sidebar_class_name: hidden
---

To pay program rent, use the following JavaScript code:
Expand Down
1 change: 1 addition & 0 deletions docs/developing-contracts/rent-system.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
sidebar_label: Program Rent
sidebar_position: 12
sidebar_class_name: hidden
---

# Program Rent
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/prerequisites.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ fn main() {
```

`Cargo.toml` is a project manifest in Rust, it contains all metadata necessary for compiling the project.
Configure the `Cargo.toml` similarly to how it is configured [ping/Cargo.toml](https://github.com/gear-foundation/dapps-ping/blob/master/Cargo.toml). You can refer to [Getting Started](/docs/getting-started-in-5-minutes.md) for additional details.
Configure the `Cargo.toml` similarly to how it is configured [ping/Cargo.toml](https://github.com/gear-foundation/dapps-app/blob/master/Cargo.toml). You can refer to [Getting Started](/docs/getting-started-in-5-minutes.md) for additional details.

## Building Rust Contract

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"react-dom": "^17.0.2",
"rehype-katex": "^6.0.3",
"remark-math": "^3.0.1",
"sass": "^1.66.1",
"sass": "^1.67.0",
"url-loader": "^4.1.1"
},
"browserslist": {
Expand Down
16 changes: 11 additions & 5 deletions src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,27 @@ div[class^="announcementBar"][role="banner"] {
font-weight: bold;
padding: 7px 0px;
color: #00FFC4;
background-color:#188269;
background-color: #188269;

a {
text-decoration:none;
text-decoration: none;
color: #000000;
background-color: #03FFC4;
padding: 2px 12px;
border-radius: 4px;
transition-duration: 1s;

&:hover {
/*color: var(--ifm-color-primary) !important; */
background-color: #00CDAD;
}
}
}

button.close {
color: #00FFC4;
}
color: #00FFC4;
}
}

.hidden {
display: none !important;
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6757,10 +6757,10 @@ sass-loader@^10.1.1:
schema-utils "^3.0.0"
semver "^7.3.2"

sass@^1.66.1:
version "1.66.1"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.66.1.tgz#04b51c4671e4650aa393740e66a4e58b44d055b1"
integrity sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==
sass@^1.67.0:
version "1.67.0"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.67.0.tgz#fed84d74b9cd708db603b1380d6dc1f71bb24f6f"
integrity sha512-SVrO9ZeX/QQyEGtuZYCVxoeAL5vGlYjJ9p4i4HFuekWl8y/LtJ7tJc10Z+ck1c8xOuoBm2MYzcLfTAffD0pl/A==
dependencies:
chokidar ">=3.0.0 <4.0.0"
immutable "^4.0.0"
Expand Down

0 comments on commit 9ac148f

Please sign in to comment.