Skip to content

Commit a534863

Browse files
mattaerealPatrickAlphaC
authored andcommitted
Fix several misc (security-alliance#168)
* Added some things to gitignore, particularly to use claude. * Correcting attribution * Updating steward, and improving tags UI
1 parent f6030ba commit a534863

File tree

5 files changed

+34
-28
lines changed

5 files changed

+34
-28
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,15 @@ Cargo.lock
1919
# Ignore contributors index file to prevent watch loops
2020
theme/contributors/contributorsindex.js
2121
theme/tags/tagsindex.js
22+
23+
# Ignore claude-code installation
24+
claude-code
25+
@anthropic-ai/claude-code
26+
27+
# Node.js dependencies
28+
node_modules/
29+
package.json
30+
package-lock.json
31+
32+
# Claude Code configuration
33+
CLAUDE.md

src/SUMMARY.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,18 @@
3636
- [Integration & Mapping to Other Frameworks](./opsec/integration-mapping.md)
3737
- [Appendices](./opsec/appendices.md)
3838
- [Wallet Security](./wallet-security/README.md)
39-
- [Cold vs Hot Wallet](./wallet-security/cold-vs-hot-wallet.md)
4039
- [Custodial vs Non-Custodial](./wallet-security/custodial-vs-non-custodial.md)
41-
- [Hardware Wallets](./wallet-security/hardware-wallets.md)
42-
- [Signing Schemes](./wallet-security/signing-schemes.md)
43-
- [Software Wallets](./wallet-security/software-wallets.md)
44-
- [Secure Multisig Best Practices](./wallet-security/secure-multisig-best-practices.md)
45-
- [Secure Multisig Signing Process](./wallet-security/secure-multisig-signing-process.md)
40+
- [Cold vs Hot Wallet](./wallet-security/cold-vs-hot-wallet.md)
41+
- [Wallets For Beginners & Small Balances](./wallet-security/for-beginners-&-small-balances.md)
42+
- [Wallets For Intermediates & Medium Funds ](./wallet-security/intermediates-&-medium-funds.md)
43+
- [Multisig Wallets For Advanced Users & High Funds](./wallet-security/secure-multisig-best-practices.md)
44+
- [Account Abstraction Wallets](./wallet-security/account-abstraction.md)
45+
- [Signing & Verification](./wallet-security/signing-verification.md)
46+
- [Verifying Standard Transactions (EOA)](./wallet-security/verifying-standard-transactions.md)
47+
- [Multisig Signing Process](./wallet-security/secure-multisig-signing-process.md)
48+
- [Using EIP-7702](./wallet-security/verifying-7702.md)
49+
- [Private Key & Seed Phrase Management](./wallet-security/private-key-management.md)
50+
- [Tools & Resources](./wallet-security/tools-&-resources.md)
4651
- [External Security Reviews](./external-security-reviews/README.md)
4752
- [Expectation](./external-security-reviews/expectation.md)
4853
- [Preparation](./external-security-reviews/preparation.md)

src/community-management/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ tags:
33
- Community & Marketing
44
contributors:
55
- role: wrote
6-
users: [mattaereal, robert, ghadi8, robert, tebayoso, engn33r, robert, robert, engn33r]
6+
users: [mattaereal, robert]
77
- role: reviewed
8-
users: [mattaereal, robert, tebayoso, robert, ghadi8, robert, robert, engn33r, tebayoso]
9-
- role: fact-checked
10-
users: [mattaereal, robert, ghadi8, tebayoso, robert, engn33r, tebayoso, robert, ghadi8]
8+
users: [ghadi8]
119
---
1210

1311
# Community Management

src/config/contributors.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
"features": [
9797
"steward"
9898
],
99-
"role": "Security Researcher",
100-
"description": "Creator and maintainer of Wallet Security Framework",
99+
"role": "steward",
100+
"description": "Steward of Wallet-Security framework",
101101
"company": "Coinspect",
102102
"website": "https://www.coinspect.com/"
103103
}

theme/custom.css

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@
2626

2727
/* Colored Tag Span. Displayed at the top of tagged pages */
2828
.tag {
29-
margin: 0 5px 10px 0;
29+
margin: 0 5px 5px 0;
3030
padding: 5px 10px;
31-
border-radius: 20px;
31+
border-radius: 5px;
3232
display: inline-flex;
3333
align-items: center;
3434
justify-content: center;
3535
color: white;
36+
font-size: 1.4rem;
37+
font-weight: 500;
38+
line-height: 1;
3639
}
3740

3841
/* Tag Search Styles */
@@ -315,29 +318,17 @@ main p {
315318

316319
/* Ensure tags are displayed properly */
317320
.tags {
318-
display: block;
319321
margin-top: 1rem; /* Add space above tags to separate from contributors */
320322
width: 100%;
321323
display: flex;
322324
flex-wrap: wrap;
323-
gap: 0.5rem;
325+
gap: 0.25rem;
324326
margin-bottom: 1rem;
325327
clear: left;
326328
}
327329

328330
.tags p {
329-
display: content;
330-
}
331-
332-
.tag {
333-
display: inline-block;
334-
padding: 0.5rem 1rem;
335-
border-radius: 0.25rem;
336-
color: white;
337-
font-size: 1.6rem;
338-
font-weight: 500;
339-
line-height: 1;
340-
height: auto;
331+
display: contents;
341332
}
342333

343334
.contributors-title {

0 commit comments

Comments
 (0)