-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic styles for the Modal, Drawer, Sidebar
- Loading branch information
1 parent
7cd3446
commit e32f154
Showing
7 changed files
with
60 additions
and
29 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
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,24 @@ | ||
import { ComponentSingleStyleConfig } from "@chakra-ui/react" | ||
|
||
const Modal: ComponentSingleStyleConfig = { | ||
baseStyle: { | ||
dialog: { | ||
p: 4, | ||
border: "2px", | ||
boxShadow: "none", | ||
borderColor: "white", | ||
borderRadius: "xl", | ||
// TODO: Use the correct variables | ||
bg: "#FBF7EC", | ||
}, | ||
closeButton: { | ||
top: -10, | ||
right: -10, | ||
rounded: "100%", | ||
// TODO: Use the correct variables | ||
bg: "#FBF7EC", | ||
}, | ||
}, | ||
} | ||
|
||
export default Modal |
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