-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented see all functionality for chat sidebar (#1086)
* implemented see all functionality for chat sidebar * added test and some fixes * fix * fix lint
- Loading branch information
Showing
26 changed files
with
583 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 5 additions & 28 deletions
33
src/components/sidebar-image-grid/SidebarImageGrid.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,9 @@ | ||
import { TypographyVariantEnum } from '~/types' | ||
|
||
export const styles = { | ||
imageGrid: { | ||
display: 'flex', | ||
gap: '13px', | ||
px: '16px', | ||
justifyContent: 'start' | ||
display: 'grid', | ||
justifyContent: 'center', | ||
gridTemplateColumns: 'repeat(3, 88px)', | ||
gap: '8px' | ||
}, | ||
imageWrapper: { | ||
m: '20px 10px' | ||
}, | ||
modalImage: { | ||
width: '100%', | ||
borderRadius: '5px' | ||
}, | ||
expansiveGrid: { | ||
display: 'flex', | ||
gap: '8px', | ||
flexWrap: 'wrap', | ||
justifyContent: 'flex-start' | ||
}, | ||
expansiveImage: { | ||
width: '95px', | ||
height: '95px' | ||
}, | ||
dateText: { | ||
typography: TypographyVariantEnum.Subtitle2, | ||
color: 'primary.700', | ||
p: '4px 16px' | ||
} | ||
modalImage: { width: '100%', borderRadius: '5px' } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.