mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 23:15:36 +00:00
feat: add create link form
This commit is contained in:
@@ -8,3 +8,12 @@ export const fadeIn = keyframes({
|
||||
opacity: 1,
|
||||
},
|
||||
});
|
||||
|
||||
export const rotate = keyframes({
|
||||
to: {
|
||||
transform: 'rotate(0deg)',
|
||||
},
|
||||
from: {
|
||||
transform: 'rotate(360deg)',
|
||||
},
|
||||
});
|
||||
|
||||
@@ -46,4 +46,25 @@ export const cssReset = css({
|
||||
boxShadow: '0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset',
|
||||
display: 'inline-block',
|
||||
},
|
||||
|
||||
/* width */
|
||||
'::-webkit-scrollbar': {
|
||||
height: '0.45em',
|
||||
width: '0.45em',
|
||||
},
|
||||
|
||||
/* Track */
|
||||
'::-webkit-scrollbar-track': {
|
||||
borderRadius: theme.border.radius,
|
||||
},
|
||||
|
||||
/* Handle */
|
||||
'::-webkit-scrollbar-thumb': {
|
||||
background: theme.colors.blue,
|
||||
borderRadius: theme.border.radius,
|
||||
|
||||
'&:hover': {
|
||||
background: theme.colors.darkBlue,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -58,7 +58,7 @@ export const theme: Theme = {
|
||||
},
|
||||
|
||||
border: {
|
||||
radius: '5px',
|
||||
radius: '3px',
|
||||
},
|
||||
|
||||
media: {
|
||||
|
||||
Reference in New Issue
Block a user