-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chaneg card size * fx grid * fix grid * fix gradient * subtitle color * match designs * move new project buttons * fix dropdown alignment * dropdown triggers are grey when menu is open * adressing comments * react useCallback
- Loading branch information
Showing
6 changed files
with
70 additions
and
53 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { recipe } from '@vanilla-extract/recipes' | ||
import { colors, sprinkles } from './sprinkles.css' | ||
|
||
export const projectCards = recipe({ | ||
base: [ | ||
{ | ||
flexGrow: 1, | ||
overflow: 'hidden scroll', | ||
scrollbarColor: 'lightgrey transparent', | ||
display: 'grid', | ||
gridTemplateColumns: 'repeat(auto-fill, 280px)', | ||
justifyContent: 'space-between', | ||
alignContent: 'flex-start', | ||
gridGap: '60px 40px', | ||
paddingRight: 30, | ||
}, | ||
], | ||
}) | ||
|
||
export const projectRows = recipe({ | ||
base: [ | ||
{ | ||
flexGrow: 1, | ||
overflowY: 'scroll', | ||
scrollbarColor: 'lightgrey transparent', | ||
gap: 10, | ||
}, | ||
], | ||
}) |
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