Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

color scheme: muted-sky #1096

Merged
merged 6 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 72 additions & 9 deletions website/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion website/src/components/ConfirmationDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const ConfirmationDialog: FC<ConfirmationDialogProps> = ({ dialogText, on
</button>
</form>
<form method='dialog'>
<button className='btn loculusGreen' onClick={onConfirmation}>
<button className='btn loculusColor' onClick={onConfirmation}>
Confirm
</button>
</form>
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/DeprecatedConfirmationDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const ConfirmationDialog: FC<ConfirmationDialogProps> = ({ dialogText, on
<button className='btn btn-error'>Cancel</button>
</form>
<form method='dialog'>
<button className='btn loculusGreen' onClick={onConfirmation}>
<button className='btn loculusColor' onClick={onConfirmation}>
Confirm
</button>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const DownloadDialog: FC<DownloadDialogProps> = ({
</div>

<a
className={`btn loculusGreen ${!agreedToDataUseTerms ? 'btn-disabled' : ''}`}
className={`btn loculusColor ${!agreedToDataUseTerms ? 'btn-disabled' : ''}`}
href={downloadUrl}
onClick={closeDialog}
>
Expand Down
Loading
Loading