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

Change colour of ship base #206

Merged
merged 2 commits into from
Mar 6, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/views/html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export function getHeader(options: {withCollapsed?: boolean} = {}): string {
position: relative;
border-radius: 50% 50% 0 0;
border-bottom: 10px solid #0055ff;
background-color: #FFF;
background-image: radial-gradient(ellipse at center, #FFF 34%, #0055ff 35%, #0055ff 54%, #FFF 55%), linear-gradient(#0055ff 10px, transparent 0);
background-color: #d6dce3;
background-image: radial-gradient(ellipse at center, #d6dce3 34%, #0055ff 35%, #0055ff 54%, #d6dce3 55%), linear-gradient(#0055ff 10px, transparent 0);
background-size: 28px 28px;
background-position: center 20px , center 2px;
background-repeat: no-repeat;
Expand Down
Loading