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 { .btn-primary {
background: #2dc262; background: #2dc262;
border-color: #29a354;
padding: 8px; padding: 8px;
padding-left: 24px; padding-left: 24px;
padding-right: 24px; padding-right: 24px;
} }
.btn-primary:hover { .btn-primary:hover {
background-color: #29a354; background-color: #29a354;
border-color: #2dc262;
} }
.btn-primary:disabled { .btn-primary:disabled {
background-color: #69b383; background-color: #69b383;

View file

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

View file

@ -64,7 +64,7 @@ const englishConstants = {
WEB_SIGNUPS_DISABLED: WEB_SIGNUPS_DISABLED:
'Web signups are disabled for now, please install the mobile app and signup there', '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', 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?', NO_ACCOUNT: 'don\'t have an account?',
}; };