Update gallery screen

This commit is contained in:
Vishnu Mohandas 2021-02-15 17:04:11 +05:30
parent 9ef43724e6
commit c57772c2fb
3 changed files with 6 additions and 4 deletions

View file

@ -107,12 +107,14 @@ const GlobalStyles = createGlobalStyle`
}
.btn-primary {
background: #2dc262;
border-color: #29a354;
padding: 8px;
padding-left: 24px;
padding-right: 24px;
}
.btn-primary:hover {
background-color: #29a354;
border-color: #2dc262;
}
.btn-primary:disabled {
background-color: #69b383;

View file

@ -36,9 +36,9 @@ const Wrapper = styled.div`
max-width: 100%;
`;
const Chip = styled.button<{ active: boolean }>`
border-radius: 20px;
padding: 2px 10px;
margin: 2px 5px 2px 2px;
border-radius: 8px;
padding: 4px 14px;
margin: 2px 8px 2px 2px;
border: none;
background-color: ${(props) =>
props.active ? '#fff' : 'rgba(255, 255, 255, 0.3)'};

View file

@ -64,7 +64,7 @@ const englishConstants = {
WEB_SIGNUPS_DISABLED:
'Web signups are disabled for now, please install the mobile app and signup there',
USER_DOES_NOT_EXIST: 'sorry, could not find an ente user',
UPLOAD_BUTTON_TEXT: 'Upload',
UPLOAD_BUTTON_TEXT: 'upload',
NO_ACCOUNT: 'don\'t have an account?',
};