Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
- name: Setup Playwright
run: |
npx playwright install --with-deps
- name: Format
run: |
npm run format:check
- name: Lint
run: |
npm run lint
- name: Build the website
run: |
npm run docs:build
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ jobs:
- name: Installing project dependencies
run: |
npm ci
- name: Format
run: |
npm run format:check
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test
2 changes: 1 addition & 1 deletion docs/components/header/header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}

.navBarMenuItem a.active {
font-weight: extra-bold;
font-weight: 800;
background-color: var(--color-white);
border-radius: var(--radius-3);
padding: var(--size-1) var(--size-3);
Expand Down
1 change: 0 additions & 1 deletion docs/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ pre[class*='language-'] {

/* external links styling */
.no-show-screen-reader {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
Expand Down
Loading