Skip to content

Commit 9f17e41

Browse files
committed
remove border that separate stats
1 parent 403159f commit 9f17e41

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

src/components/Staking/StakingStatsBox.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ import { Flex, VStack } from "@/components/ui/flex"
1111
import { getLocaleForNumberFormat } from "@/lib/utils/translations"
1212

1313
const Cell = ({ children }: ChildOnlyProp) => (
14-
<VStack className="gap-2 border-t border-t-border-preBorder px-8 py-4 first:border-t-0 md:border-t-0">
15-
{children}
16-
</VStack>
14+
<VStack className="gap-2 px-8 py-4">{children}</VStack>
1715
)
1816

1917
const Value = ({ children }: ChildOnlyProp) => (

src/styles/global.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
rgba(145, 234, 228, 0.2) 100%
4444
);
4545
--search-background: var(--background);
46-
/* To be reviewed */
47-
--pre-border: rgba(0,0,0,.05);
4846
}
4947

5048
[data-theme="dark"] {
@@ -73,8 +71,6 @@
7371
rgba(134, 253, 232, 0.08) 100%
7472
);
7573
--search-background: #4c4c4c;
76-
/* To be reviewed */
77-
--pre-border: hsla(0,0%,100%,.05);
7874
}
7975
}
8076

tailwind.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,6 @@ const config = {
159159
"high-contrast": "hsla(var(--border-high-contrast))",
160160
"low-contrast": "hsla(var(--border-low-contrast))",
161161
hover: "hsla(var(--border-hover))",
162-
163-
// To be reviewed
164-
preBorder: "var(--pre-border)",
165162
},
166163

167164
primary: {

0 commit comments

Comments
 (0)