Skip to content

Commit a7d2ce8

Browse files
committed
More CSS tidyup largely relating to SC approach
1 parent dbc87d7 commit a7d2ce8

File tree

113 files changed

+609
-667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+609
-667
lines changed

src/app/(alternatives)/charles-alternative/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ export default async function CharlesAlternativePage() {
2222
video={{id: 'chrome'}}
2323
/>
2424
<IntegrationCTA
25-
$variant="cta"
25+
variant="cta"
2626
title="One-click setup integrations for every tool you use"
2727
text={["HTTP Toolkit includes one-click automated setup to provide precisely targeted interception of individual mobile apps, browsers, terminal windows, Docker containers & more."]}
2828
button={{
29-
$small: true,
30-
$variant: 'secondary',
29+
small: true,
30+
variant: 'secondary',
3131
children: 'See all integrations',
3232
href: '/all-integrations',
3333
}}

src/app/(alternatives)/chrome-devtools-alternative/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ export default async function ChromeDevToolsAlternativePage() {
2121
video={{id: 'chrome'}}
2222
/>
2323
<IntegrationCTA
24-
$variant="cta"
24+
variant="cta"
2525
title="One-click setup integrations for every tool you use"
2626
text={["HTTP Toolkit includes one-click automated setup to provide precisely targeted interception of individual browser windows, mobile apps, terminal sessions, Docker containers & more."]}
2727
button={{
28-
$small: true,
29-
$variant: 'secondary',
28+
small: true,
29+
variant: 'secondary',
3030
children: 'See all integrations',
3131
href: '/all-integrations',
3232
}}

src/app/(alternatives)/fiddler-alternative/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ export default async function FiddlerPage() {
2121
video={{id: 'chrome'}}
2222
/>
2323
<IntegrationCTA
24-
$variant="cta"
24+
variant="cta"
2525
title="One-click setup integrations for every tool you use"
2626
text={["HTTP Toolkit includes one-click automated setup to provide precisely targeted interception of individual mobile apps, browsers, terminal windows, Docker containers & more."]}
2727
button={{
28-
$small: true,
29-
$variant: 'secondary',
28+
small: true,
29+
variant: 'secondary',
3030
children: 'See all integrations',
3131
href: '/all-integrations',
3232
}}

src/app/(integrations)/android/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,31 +29,31 @@ export default function AndroidIntegrationPage() {
2929
subtitle="what is http toolkit?"
3030
cards={[
3131
{
32-
$variant: 'default',
32+
variant: 'default',
3333
title: 'Get started instantly',
3434
text: 'No messing around with certificate files and wifi settings.\n\nClick the button, accept permissions, start capturing traffic, toggle off & on again in one tap.\n\nGet straight to the data with zero hassle.',
3535
icon: RocketLaunch,
3636
},
3737
{
38-
$variant: 'default',
38+
variant: 'default',
3939
title: "Flexible setup for every environment",
4040
text: 'Setup automatically using ADB or by scanning a QR code.\n\nIntercept the entire device, or target just a single app.\n\nSupports Android versions from Android Lollipop (v5 / API level 21+) through to the latest releases.',
4141
icon: Wrench,
4242
},
4343
{
44-
$variant: 'default',
44+
variant: 'default',
4545
title: 'Capture & inspect encrypted HTTPS',
4646
text: 'Immediately view HTTPS on any device for apps that trust user-installed certificates, like Chrome, or your own app with a tiny manifest change.\n\nOn emulators & rooted devices, easily intercept HTTPS from any app, with automatic injection of a system certificate authority and automatic certificate unpinning powered by built-in Frida integration.',
4747
icon: SealCheck,
4848
},
4949
{
50-
$variant: 'default',
50+
variant: 'default',
5151
title: 'See all your Android HTTP',
5252
text: 'Powered by Android\'s VPN APIs and built-in Frida support, HTTP Toolkit intercepts everything, even HTTP traffic from apps that try to ignore your system proxy settings.',
5353
icon: MagnifyingGlass,
5454
},
5555
{
56-
$variant: 'highlighted',
56+
variant: 'highlighted',
5757
title: 'Want the full details?',
5858
text: 'Take a look at the in-depth guide to Android HTTP debugging.',
5959
buttonText: 'Learn more',

src/app/(pricing)/get-pro/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function PricingPage() {
2424
withDownload={false}
2525
>
2626
<Suspense>
27-
<PricingPlans downloadButton={<DownloadButton />} $hideFree />
27+
<PricingPlans downloadButton={<DownloadButton />} hideFree />
2828
</Suspense>
2929
</CTA>
3030
</>

src/app/(pricing)/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export default function PricingLayout({ children }: { children: React.ReactNode
2525
title="Frequently Asked Questions"
2626
text=""
2727
cta={{
28-
$small: true,
29-
$variant: 'secondary',
28+
small: true,
29+
variant: 'secondary',
3030
children: 'See more FAQs',
3131
icon: CaretRight,
3232
as: 'link',

src/app/(products)/http-toolkit-for-linux/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function ForLinuxPage() {
1717
return (
1818
<>
1919
<CTA
20-
$bgVariant="right-bottom-to-top-left"
20+
bgVariant="right-bottom-to-top-left"
2121
icon={LinuxLogo}
2222
heading="Intercept, debug & mock HTTP on Linux"
2323
excerpt="HTTP Toolkit lets you easily see and modify HTTP & HTTPS messages from applications, browsers, scripts & more on your Linux computer."

src/app/(products)/http-toolkit-for-mac/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function ForMacOsPage() {
1717
return (
1818
<>
1919
<CTA
20-
$bgVariant="left-bottom-to-top-right"
20+
bgVariant="left-bottom-to-top-right"
2121
icon={AppleLogo}
2222
heading="Intercept, debug & mock HTTP on macOS"
2323
excerpt="HTTP Toolkit lets you easily see and modify HTTP & HTTPS messages from applications, browsers, scripts & more on your Mac."

src/app/(products)/http-toolkit-for-windows/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function ForWindowsPage() {
1717
return (
1818
<>
1919
<CTA
20-
$bgVariant="left-top-to-bottom-right"
20+
bgVariant="left-top-to-bottom-right"
2121
icon={WindowsLogo}
2222
heading="Intercept, debug & mock HTTP on Windows"
2323
excerpt="HTTP Toolkit lets you easily see and modify HTTP & HTTPS messages from applications, browsers, scripts & more on your Windows computer."

src/app/(thank-you-pages)/app-purchase-thank-you/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export default function AppPurchaseThankYouPage() {
4242
<StyledThankYouColumnContent>
4343
<StyledTextContent>
4444
<Stack>
45-
<Stack $gapxl="32px">
46-
<Stack $gapxl="24px">
45+
<Stack gapxl="32px">
46+
<Stack gapxl="24px">
4747
<StyledHideElementOn data-hide-below="md">
4848
<Heading fontSize="l" color="textGradient">
4949
Thanks for your purchase!

0 commit comments

Comments
 (0)