fix: show border around pagetitle when renaming (#4080)

This commit is contained in:
KaranPant
2023-09-01 03:51:58 +05:45
committed by GitHub
parent 7082937b62
commit b18596fc57

View File

@@ -25,6 +25,15 @@ export const titleInput = style({
margin: 'auto',
width: '100%',
height: '100%',
selectors: {
'&:focus': {
border: '1px solid var(--affine-black-10)',
borderRadius: '8px',
height: '32px',
padding: '6px 8px',
},
},
});
export const shadowTitle = style({
visibility: 'hidden',