fixes
This commit is contained in:
parent
820f12d33a
commit
7d0478b625
@ -255,13 +255,13 @@ const Loader = styled.div<{ $hidden: boolean, "data-display-text": string }>`
|
||||
}
|
||||
|
||||
&:before {
|
||||
background: linear-gradient(79deg, #FFBA00 0%, #FFEC47 31%, #C4E30F 63%, #5EA12D 98%) 100%;
|
||||
background: linear-gradient(79deg, #FFBA00 0%, #FFEC47 9%, #C4E30F 24%, #5EA12D 98%) 100%;
|
||||
background-clip: text;
|
||||
animation: opacityAnim 1s ease-in-out 0s infinite alternate;
|
||||
}
|
||||
|
||||
&:after {
|
||||
background: linear-gradient(79deg, #5EA12D 2%, #C4E30F 38%, #FFEC47 69%, #FFBA00 100%) 100%;
|
||||
background: linear-gradient(79deg, #5EA12D 2%, #C4E30F 76%, #FFEC47 91%, #FFBA00 100%) 100%;
|
||||
background-clip: text;
|
||||
animation: opacityAnim 1s ease-in-out -1s infinite alternate;
|
||||
}
|
||||
|
||||
@ -114,7 +114,7 @@ const ItemName = styled.div`
|
||||
|
||||
const ItemPrice = styled.div`
|
||||
font-size: 14px;
|
||||
color: ${({theme}) => theme.colors.gray};
|
||||
color: ${({theme}) => theme.colors.darkGreen};
|
||||
`;
|
||||
|
||||
const MenuWrapper = styled.div`
|
||||
|
||||
@ -230,8 +230,8 @@ const AddButton = styled.button`
|
||||
justify-content: center;
|
||||
margin-top: 14px;
|
||||
color: ${({ theme }) => theme.colors.green};
|
||||
font-size: 15px;
|
||||
font-weight: 350;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: 0.2s;
|
||||
background-color: transparent;
|
||||
|
||||
@ -304,10 +304,14 @@ const FormGroup = styled.div`
|
||||
font-size: 14px;
|
||||
outline: none;
|
||||
transition: 0.2s;
|
||||
height: 44px;
|
||||
|
||||
&::placeholder {
|
||||
color: #A3ADA2;
|
||||
}
|
||||
&:hover {
|
||||
border-color: ${({theme}) => theme.colors.gray};
|
||||
}
|
||||
&:focus {
|
||||
border-color: ${({theme}) => theme.colors.green};
|
||||
}
|
||||
@ -333,7 +337,7 @@ const Hint = styled.span`
|
||||
|
||||
const GenderToggles = styled.div`
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
`;
|
||||
|
||||
|
||||
@ -111,6 +111,7 @@ const Input = styled.input`
|
||||
font-size: 14px;
|
||||
outline: none;
|
||||
margin-bottom: 6px;
|
||||
height: 44px;
|
||||
|
||||
&::placeholder {
|
||||
color:#A3ADA2;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user