Skip to content

Commit

Permalink
Fix broken styling on non-authenticated routes
Browse files Browse the repository at this point in the history
  • Loading branch information
wmnnd committed Jul 2, 2021
1 parent 57bc9c7 commit 8128228
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# Changelog

## Version 0.5.2

### Fixed
- Fixed broken styling on non-authenticated routes


## Version 0.5.1

## Added
### Added
- Improved onboarding experience with empty states for all views

## Changed
### Changed
- Improved dark app design
- Stricter code-checks in CI

## Fixed
### Fixed
- Default template is now displayed correctly in campaign editor
- Paddle webhooks now have improved idempotency

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ repository:

Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.

## Translating Keila

Keila uses GNU Gettext for translations. Translation files are found in
`priv/gettext`.

## Extract
mix gettext.extract

## The Name
Keila is the name of the elephant mascot of this project.
She’s a wise and diligent elephant lady, able to remember countless email
Expand Down
9 changes: 5 additions & 4 deletions lib/keila_web/templates/layout/_header.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@
</header>
<% else %>
<header class="bg-gray-900">
<div class="container text-center my-4 text-green-500">
<a href="/">
h-10 w-auto -mt-1 -mr-1 inline-block
<%= render_icon(:logo) %>
<div class="container my-4 text-green-500 flex justify-center">
<a href="/" class="inline-flex items-start">
<span class="flex h-11 w-11 -mr-1">
<%= render_icon(:logo) %>
</span>
<span class="text-3xl font-light">Keila</span>
</a>
</div>
Expand Down

0 comments on commit 8128228

Please sign in to comment.