Skip to content

Commit

Permalink
fix(components): standardize black color as hex #0A0A0A
Browse files Browse the repository at this point in the history
Updates the `bgColor` property from "black" to the standardized
hex value "#0A0A0A" in Content and Footer components for
better consistency across the project design.
  • Loading branch information
kleberbaum committed Mar 31, 2024
1 parent 416cf05 commit 37e2b18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/liba/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ const ContentSection = () => {
//mt="-25px"
overflow={{base: 'hidden', lg: 'visible'}}
px={{base: 5, lg: 0}}
//bgColor="black"
//bgColor="#0A0A0A"
zIndex={0}>
<Field.Text
mt={{base: '20 !important', md: '0'}}
Expand Down Expand Up @@ -555,7 +555,7 @@ const ContentSection = () => {
//mt="-25px"
overflow={{base: 'hidden', lg: 'visible'}}
px={{base: 5, lg: 0}}
bgColor="black"
bgColor="#0A0A0A"
zIndex={0}>
<AssociatesLinkGrid />
</Container>
Expand Down Expand Up @@ -705,7 +705,7 @@ const ContentSection = () => {
//mt="-25px"
overflow={{base: 'hidden', lg: 'visible'}}
px={{base: 5, lg: 0}}
bgColor="black"
bgColor="#0A0A0A"
zIndex={0}>
{/* <Box
position="absolute"
Expand Down
2 changes: 1 addition & 1 deletion src/liba/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const Footer: FC = () => {
//mt="-25px"
px={{base: 5, lg: 0}}
overflowX="hidden"
bgColor="black"
bgColor="#0A0A0A"
zIndex={0}>
<Container maxW="7xl" h="100%">
<Flex mt={20} color="white" wrap={{base: 'wrap', sm: 'nowrap'}}>
Expand Down

0 comments on commit 37e2b18

Please sign in to comment.