mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 18:09:09 +00:00
fix all linting issues, upgrade most packages
This commit is contained in:
parent
c7774ddca3
commit
3c3af304f7
45 changed files with 1148 additions and 1848 deletions
|
@ -59,10 +59,10 @@ export const InteractionBase = styled.div<InteractionBaseProps>`
|
|||
padding: 0 5px;
|
||||
transition: opacity ${transitions.actionable}s ease-in-out,
|
||||
background-color ${transitions.actionable}s ease-in-out;
|
||||
opacity: ${(props) => (props.hide ? 1 : 0)};
|
||||
opacity: ${(props) => (props.hide ? '100%' : '0%')};
|
||||
|
||||
:hover {
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: rgb(0 0 0 / 15%);
|
||||
cursor: pointer;
|
||||
}
|
||||
`;
|
||||
|
@ -97,7 +97,7 @@ export const SecondaryBase = styled(MastheadBase)`
|
|||
background-color: ${palette.taupe300};
|
||||
z-index: 99;
|
||||
padding: 0 15px;
|
||||
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 1px 1px 3px rgb(0 0 0 / 5%);
|
||||
`;
|
||||
|
||||
export const IconHolder = styled.div`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue