Skip to content

Commit b36d0fe

Browse files
committed
fix: resolve CSS autoprefixer warning and broken links
- Update display: box to display: -webkit-box with proper prefixes in video-title class - Fix /providers/index link to /providers in index.mdx - Fix /roo-code-cloud/credits links to /roo-code-cloud/billing-subscriptions
1 parent 55031a5 commit b36d0fe

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The two options are highly complementary and built on the same shared foundation
3737

3838
The most successful Roo users tend to embrace the following ideas:
3939

40-
- **Leverage model agnosticism:** Roo isn't an LLM model, it needs an [LLM provider](/providers/index) to work. But it's compatible with dozens of providers and hundreds of models, so you're free to experiment, optimize and switch around, by design. No lock-ins in a world where "the best model" changes every other week.
40+
- **Leverage model agnosticism:** Roo isn't an LLM model, it needs an [LLM provider](/providers) to work. But it's compatible with dozens of providers and hundreds of models, so you're free to experiment, optimize and switch around, by design. No lock-ins in a world where "the best model" changes every other week.
4141
- **Don't skimp on tokens:** expensive state-of-the-art models with lots of tokens will almost always beat cheap models using few tokens. Pay attention to your budget, but embrace the fact that tokens are cheaper than developer time.
4242
- **Trust roles:** The extension's customizable Modes (Architect, Code, etc) and the pre-defined Cloud Agent Types (Planner, Coder, etc) keep the models on track and focused on the task at hand, without stepping outside of their boundaries. Lean on them depending on the task you're working on.
4343
- **Be ambitious:** Roo works best the more you trust it. Out-of-the-box, the Extension will ask for your permission to everything, but as you become more comfortable and enable [Auto-Approve](/features/auto-approving-actions), you'll see it work for long periods on its own without getting stuck or making bad decisions. Once ready, throw large, complex projects at the [Orchestrator](/basic-usage/using-modes#orchestrator-mode-aka-boomerang-mode), who will coordinate tasks across Modes. In the Cloud, we handle all of this for you.

docs/providers/roo-code-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ We curate the best models for coding and offer them directly to you.
5454

5555
## Pricing & Credits
5656

57-
Roo Code Cloud operates on a [Credit System](/roo-code-cloud/credits).
57+
Roo Code Cloud operates on a [Credit System](/roo-code-cloud/billing-subscriptions).
5858
- **Promotional Period**: Currently, all standard usage for the models listed above is **100% FREE**.
5959
- **Future Pricing**: We will introduce a transparent credit-based system for usage beyond the free tier. You will always be notified before any charges apply.
6060

docs/roo-code-cloud/cloud-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Cloud Agents consume **Cloud Credits**. Usage is measured based on the model use
111111
- **Free Tier:** Includes access to free models for standard tasks.
112112
- **Pro Tier:** Unlocks concurrent agent execution and priority queueing.
113113

114-
There's a [whole page about credits](/roo-code-cloud/credits) if you want to learn more.
114+
There's a [whole page about credits](/roo-code-cloud/billing-subscriptions) if you want to learn more.
115115

116116
### Settings
117117

src/css/custom.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ div[style*="min-height:100vh"] {
349349
.video-title {
350350
font-weight: 500;
351351
color: var(--ifm-heading-color);
352-
display: box;
353-
line-clamp: 2;
354-
box-orient: vertical;
352+
display: -webkit-box;
353+
-webkit-line-clamp: 2;
354+
-webkit-box-orient: vertical;
355355
overflow: hidden;
356356
line-height: 1.4;
357357
max-height: 2.8em; /* 2 lines * 1.4 line-height */

0 commit comments

Comments
 (0)