-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add sharp-solid font to docsite #1813
Conversation
Warning Rate limit exceeded@esimkowitz has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 12 minutes and 56 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ⛔ Files ignored due to path filters (5)
📒 Files selected for processing (4)
WalkthroughThe pull request introduces changes to the documentation site's configuration and styling related to Font Awesome icons. Modifications include updating the icon class for pinning tabs in the documentation from Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
docs/static/fontawesome/webfonts/fa-sharp-solid-900.woff2
is excluded by!**/*.woff2
📒 Files selected for processing (3)
docs/docs/tabs.mdx
(1 hunks)docs/docusaurus.config.ts
(2 hunks)docs/static/fontawesome/css/sharp-solid.min.css
(1 hunks)
✅ Files skipped from review due to trivial changes (2)
- docs/static/fontawesome/css/sharp-solid.min.css
- docs/docs/tabs.mdx
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: Build for TestDriver.ai
- GitHub Check: Analyze (go)
🔇 Additional comments (1)
docs/docusaurus.config.ts (1)
161-170
: Verify the existence of the sharp-solid font file.The preload configuration looks good and follows the existing pattern. Let's verify that the font file exists in the specified location.
✅ Verification successful
Font file verification successful ✓
The required font file
fa-sharp-solid-900.woff2
exists in the correct location atdocs/static/fontawesome/webfonts/
, matching the path specified in the preload configuration.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Verify the existence of the sharp-solid font file fd -t f "fa-sharp-solid-900.woff2" static/fontawesome/webfonts/Length of output: 179
Script:
#!/bin/bash # Search for woff2 files and Font Awesome related files echo "=== Searching for WOFF2 font files ===" fd -e woff2 echo -e "\n=== Searching for Font Awesome related files ===" fd -t f "fontawesome|font-awesome" -E "node_modules" echo -e "\n=== Checking package.json for Font Awesome dependencies ===" if [ -f "package.json" ]; then cat package.json | grep -i "font-awesome" fiLength of output: 1395
No description provided.