Skip to content

Commit

Permalink
Dial down border radius for ui-components (#293)
Browse files Browse the repository at this point in the history
* Dial down border radius for ui-components

* update radius for page cards
  • Loading branch information
jvmi7 authored May 28, 2024
1 parent 1eea965 commit de7a076
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/dapp-console/app/insights/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Insights() {
return (
<main className="flex justify-center relative">
<Banner />
<Card className="max-w-7xl w-full mt-36 mx-8 mb-16 z-10 p-16 flex flex-col items-center">
<Card className="max-w-7xl w-full mt-36 mx-8 mb-16 z-10 p-16 flex flex-col items-center rounded-2xl">
<RiCompasses2Line size={64} className="mb-4" />
<Text as="h2" className="text-base mb-1 font-semibold">
We're still working on insights
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp-console/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Page() {
return (
<main className="flex justify-center relative">
<Banner />
<Card className="max-w-7xl w-full mt-36 mx-8 z-10 mb-16">
<Card className="max-w-7xl w-full mt-36 mx-8 z-10 mb-16 rounded-2xl">
<CardHeader className="md:p-10 lg:p-16">
<CardTitle>
<Text as="span" className="text-4xl mb-2">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
--success-foreground: 131 85% 35%;
--contrast: 0 0% 0%;
--contrast-foreground: 0 0% 100%;
--radius: 1rem;
--radius: 0.5rem;
}

.dark {
Expand Down

0 comments on commit de7a076

Please sign in to comment.