feat: styling login page

This commit is contained in:
Sonny
2024-05-19 14:57:25 +02:00
committed by Sonny
parent 25d70f2faf
commit 2ba0eccc9f
18 changed files with 222 additions and 15 deletions

View File

@@ -0,0 +1,28 @@
import styled from '@emotion/styled';
import { rgba } from '~/lib/color';
const Quotes = styled.p(({ theme }) => ({
position: 'relative',
width: 'fit-content',
whiteSpace: 'pre-wrap',
textAlign: 'center',
fontStyle: 'italic',
color: rgba(theme.colors.font, 0.75),
'&::before, &::after': {
position: 'absolute',
fontFamily: 'sans-serif',
fontSize: '2.25em',
},
'&::before': {
left: '-0.65em',
content: '"“"',
},
'&::after': {
right: '-0.5em',
content: '"”"',
},
}));
export default Quotes;