Skip to content

Commit

Permalink
updated to match design
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan-cp committed Apr 12, 2024
1 parent 96bd7a5 commit e283c92
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Feed/SuggestedProfileCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ export default function SuggestedProfileCard({

const StyledSuggestedProfileCard = styled(HStack)`
border-radius: 4px;
background-color: ${colors.offWhite};
background-color: ${colors.faint};
padding: 8px;
cursor: pointer;
text-decoration: none;
overflow: hidden;
&:hover {
background-color: ${colors.faint};
background-color: ${colors.porcelain};
}
@media only screen and ${breakpoints.desktop} {
Expand Down
2 changes: 2 additions & 0 deletions apps/web/src/components/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Route, route } from 'nextjs-routes';
import { Suspense, useCallback, useState } from 'react';
import { useHotkeys } from 'react-hotkeys-hook';
import styled from 'styled-components';
import colors from '~/shared/theme/colors';

import DrawerHeader from '~/contexts/globalLayout/GlobalSidebar/DrawerHeader';
import { useDrawerActions } from '~/contexts/globalLayout/GlobalSidebar/SidebarDrawerContext';
Expand Down Expand Up @@ -144,6 +145,7 @@ export default function Search() {

const StyledSearchContent = styled(VStack)`
padding: 0 16px;
background-color: ${colors.offWhite};
height: 100%;
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const StyledMotion = styled(motion.div)`
`;

const StyledDrawer = styled(VStack)`
background-color: ${colors.white};
background-color: ${colors.offWhite};
width: 100%;
position: relative;
min-height: 0;
Expand Down

0 comments on commit e283c92

Please sign in to comment.