Skip to content

Commit

Permalink
Update use-sheets-queue.styled.ts
Browse files Browse the repository at this point in the history
Change Sheet background to white
  • Loading branch information
rootsher committed Dec 27, 2020
1 parent d15f234 commit 9323c46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rootsher/use-sheets-queue",
"version": "0.1.6",
"version": "0.1.7",
"description": "use-sheets-queue hook for sheets management",
"keywords": [
"sheets",
Expand Down
2 changes: 1 addition & 1 deletion src/use-sheets-queue.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Backdrop = styled.div<{ status: TransitionStatus }>`
export const Sheet: FC<{ status: TransitionStatus }> = styled.div<{ status: TransitionStatus } & SheetOptions>`
position: absolute;
box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2), 0 0 24px 2px rgba(0, 0, 0, 0.14), 0 0 30px 5px rgba(0, 0, 0, 0.12);
background-color: #f1f3f4;
background-color: #FFF;
overflow: auto;
${({ side, size }) =>
['top', 'bottom'].includes(side)
Expand Down

0 comments on commit 9323c46

Please sign in to comment.