Skip to content

Commit

Permalink
Fix UI regression from moving the header button
Browse files Browse the repository at this point in the history
Problem:

When merging in #214,
the Percy.io visual regression tests weren't run
because our quota for the month had been used up.

In that PR, we re-aligned the button in the header.
This change accidentally affected content below the header.

Solution:

Change the alignment from `baseline` to `flex-start`.
This keeps the button from affecting content below the header.
  • Loading branch information
c-lliope committed Jan 15, 2016
1 parent e3e2798 commit cce7d6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.header {
align-items: baseline;
align-items: flex-start;
display: flex;
justify-content: space-between;
margin-bottom: $base-spacing * 2;
Expand Down

0 comments on commit cce7d6c

Please sign in to comment.