Skip to content

Commit

Permalink
a few fixes with unset colors
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Dec 14, 2024
1 parent 7edb15a commit 3c393b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/@molecules/SearchInput/SearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const SearchResultsContainer = styled.div<{
height: min-content;
top: calc(100% + ${theme.space['3']});
background-color: #f7f7f7;
background-color: ${theme.colors.background};
box-shadow: 0 2px 12px ${theme.colors.border};
border-radius: ${theme.radii.extraLarge};
border: ${theme.borderWidths.px} ${theme.borderStyles.solid} ${theme.colors.border};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ const Record = styled.div(
background: ${theme.colors.greenSurface};
border-radius: ${theme.radii.input};
width: ${theme.space.full};
color: ${theme.colors.text};
font-weight: ${theme.fontWeights.bold};
display: flex;
flex-direction: row;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const SectionListContainer = styled.div(
li {
font-size: ${theme.fontSizes.small};
font-weight: ${theme.fontWeights.normal};
color: ${theme.colors.text};
}
li::before {
Expand Down
1 change: 1 addition & 0 deletions src/components/pages/profile/[name]/tabs/SubnamesTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const NoMoreResultsContainer = styled.div(
align-items: center;
justify-content: center;
height: ${theme.space['15']};
color: ${theme.colors.text};
`,
)

Expand Down

0 comments on commit 3c393b9

Please sign in to comment.