mirror of
https://github.com/deiucanta/chatpad.git
synced 2026-03-11 09:04:31 +00:00
improve global styles
This commit is contained in:
parent
61dcf4f285
commit
0f7e2d4e50
1 changed files with 17 additions and 3 deletions
|
|
@ -59,6 +59,9 @@ export function App() {
|
|||
}),
|
||||
components: {
|
||||
Modal: {
|
||||
defaultProps: {
|
||||
padding: "xl",
|
||||
},
|
||||
styles: {
|
||||
title: {
|
||||
fontSize: "1.2rem",
|
||||
|
|
@ -68,14 +71,25 @@ export function App() {
|
|||
},
|
||||
ModalRoot: {
|
||||
defaultProps: {
|
||||
padding: "xl",
|
||||
centered: true,
|
||||
},
|
||||
},
|
||||
Overlay: {
|
||||
defaultProps: {
|
||||
opacity: 0.7,
|
||||
blur: 3,
|
||||
opacity: 0.6,
|
||||
blur: 6,
|
||||
},
|
||||
},
|
||||
// Input: {
|
||||
// defaultProps: {
|
||||
// variant: "filled",
|
||||
// },
|
||||
// },
|
||||
InputWrapper: {
|
||||
styles: {
|
||||
label: {
|
||||
marginBottom: 4,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue