style: temporarily adjust the style of the co-pilot (#2804)

This commit is contained in:
JimmFly
2023-06-16 15:12:59 +08:00
committed by GitHub
parent 03c0b6b364
commit f83c92cb87
5 changed files with 37 additions and 10 deletions

View File

@@ -5,11 +5,23 @@ export const detailContentStyle = style({
height: '100%',
display: 'flex',
flexDirection: 'column',
overflow: 'auto',
paddingLeft: '9px',
paddingRight: '9px',
padding: '10px',
borderLeft: '1px solid var(--affine-border-color)',
borderTop: '1px solid var(--affine-border-color)',
});
export const detailContentActionsStyle = style({});
export const detailContentActionsStyle = style({
marginTop: 'auto',
alignItems: 'flex-end',
marginBottom: '10px',
fontSize: 'var(--affine-font-xs)',
});
export const inputStyle = style({
fontSize: 'var(--affine-font-xs)',
});
export const sendButtonStyle = style({
marginTop: '10px',
borderRadius: '8px',
fontSize: 'var(--affine-font-xs)',
});