Skip to content

Commit

Permalink
Merge branch 'firefox-logo-break' into 'main'
Browse files Browse the repository at this point in the history
UI: fix line break in logo text on Firefox

See merge request reportcreator/reportcreator!773
  • Loading branch information
MWedl committed Nov 21, 2024
2 parents a543ca2 + 9efc059 commit 8795efa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Upcoming
* Plugin: webhooks at certain events
* Run periodic tasks in background
* UI: fix line break in logo text on Firefox


## v2024.91 - 2024-11-20
* Introduce a plugin system (experimental)
* Add plugins: CyberChef, GraphQL Voyager, Hash Identifier
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ head.hooks.hook('dom:beforeRender', syncBreadcrumbs);
align-items: center;
flex-grow: 0;
flex-shrink: 0;
padding-left: 0.75rem;
padding-right: 0.75rem;
padding-left: 0.7rem;
padding-right: 0.7rem;
cursor: pointer;
border-bottom-width: vuetify.$navigation-drawer-border-thin-width;
border-bottom-style: vuetify.$navigation-drawer-border-style;
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/layouts/public.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ const licenseTextFull = computed(() => {
align-items: center;
flex-grow: 0;
flex-shrink: 0;
padding-left: 0.75rem;
padding-right: 0.75rem;
padding-left: 0.7rem;
padding-right: 0.7rem;
}
.license-text {
Expand Down

0 comments on commit 8795efa

Please sign in to comment.