Skip to content

Commit

Permalink
added data + logo for Navigamus 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
Lung committed Oct 5, 2024
1 parent 8a7de98 commit 2e371fe
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
13 changes: 13 additions & 0 deletions public/eventSpecificCss/stylesNavigamus25.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@media (prefers-color-scheme: light) {
:root {
--color-main: #204c68;
--color-accent: #B72225;
}
}

@media (prefers-color-scheme: dark) {
:root {
--color-main: #57A0AD;
--color-accent: #EE2542;
}
}
Binary file added public/logo_navigamus25_trans_bg_168.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 17 additions & 2 deletions src/Event/EventType/Navigamus/EventTypeNavigamus.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,23 @@ public function getTranslationFilePaths(): array
];
}

public function isUnlockExpiredButtonAllowed(): bool
/**
* @inheritDoc
*/
#[\Override]
public function getStylesheetNameWithoutLeadingSlash(): string
{
return true;
return 'eventSpecificCss/stylesNavigamus25.css';
}

/**
* @inheritDoc
*/
#[\Override]
public function getLanguages(): array
{
return [
'cs' => '🇨🇿 Česky',
];
}
}

0 comments on commit 2e371fe

Please sign in to comment.