Skip to content

Commit 28efcac

Browse files
mintlify[bot]cursoragentmlejva
authored
docs: left-align Feature column in billing plans table (#239)
* docs: left-align Feature column in billing plans table * fix: add CSS to force left-alignment on table first column The markdown :-------- alignment syntax alone is not sufficient in Mintlify's renderer. Add an explicit CSS rule to force text-align: left on the first column (Feature column) of all tables. Co-authored-by: Vasek Mlejnsky <mlejva@users.noreply.github.com> * fix: target button elements inside table cells for left-alignment The Tooltip components render as button elements. Apply text-align and justify-content to ensure tooltip buttons in the Feature column are also left-aligned. Co-authored-by: Vasek Mlejnsky <mlejva@users.noreply.github.com> --------- Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Vasek Mlejnsky <mlejva@users.noreply.github.com>
1 parent 01c9c92 commit 28efcac

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

docs/billing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ E2B uses [usage-based pricing](#usage-based-pricing) - you pay only for what you
1111
## Plans
1212

1313
| Feature | Hobby | Pro | Enterprise |
14-
|---------|-------|-----|------------|
14+
|:--------|-------|-----|------------|
1515
| **Base price** | $0/month | $150/month | Custom |
1616
| **Free credits** | $100 (one-time) | No additional credits | Custom |
1717
| **Max vCPUs** | 8 | <Tooltip tip="Contact support@e2b.dev if you need more vCPUs.">8+</Tooltip> | Custom |

style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,14 @@ code {
100100
#sidebar a .overflow-x-hidden::-webkit-scrollbar {
101101
display: none !important;
102102
}
103+
104+
/* Force left-alignment on table first column cells and their contents */
105+
table th:first-child,
106+
table td:first-child {
107+
text-align: left !important;
108+
}
109+
110+
table td button {
111+
text-align: left !important;
112+
justify-content: flex-start !important;
113+
}

0 commit comments

Comments
 (0)