Skip to content

Commit

Permalink
onyx logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Paz committed Jan 4, 2025
1 parent 8cdeb87 commit 735c530
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 10 deletions.
Binary file added docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions frontend/src/assets/base.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
--color-dark: hsl(0 0% 0%);
--color-light: hsl(0 0% 100%);
--color-highlight: hsl(160, 100%, 50%);
--color-dark: hsl(0 0% 5%);
--color-light: hsl(0 0% 95%);
--color-highlight: hsl(238, 97%, 76%);

--color-background: var(--color-dark);
--color-text: var(--color-light);
Expand Down
58 changes: 57 additions & 1 deletion frontend/src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 12 additions & 5 deletions frontend/src/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ import { RouterLink } from 'vue-router'
<header>
<div class="wrapper">
<nav>
<div>
<RouterLink to="/">
<h1>O<strong style="font-size: 2rem;">NYX</strong></h1>
</RouterLink>
<strong>Markdown Manager</strong>
<div style="display: flex; align-items: end; gap:0.5rem">
<div>
<img alt="Onyx logo" class="logo" src="../assets/logo.svg" style="height:3em" />
</div>
<div>
<RouterLink to="/">
<h1>O<strong style="font-size: 2rem;">NYX</strong></h1>
</RouterLink>
</div>
</div>
<div>
<div id="links">
Expand All @@ -24,6 +28,9 @@ import { RouterLink } from 'vue-router'
</template>

<style scoped>
.logo {
}
h1 {
font-size: 3rem;
font-weight: bold;
Expand Down
4 changes: 4 additions & 0 deletions internal/reminder/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ func (ms *MonitoringService) searchForReminders() error {
}
}

if len(ms.reminders) == 0 {
return nil
}

if ms.matrixService != nil {
err = ms.matrixService.Authenticate()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion onyx.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ONYX_VERSION=0.3.0
ONYX_VERSION=0.3.1

0 comments on commit 735c530

Please sign in to comment.