Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(button): fixes button styles so that <a> and <button> examples look
Browse files Browse the repository at this point in the history
identical

Fixes issue introduced in cc07e63
  • Loading branch information
Robert Messerle committed Jun 16, 2015
1 parent 8de8f7a commit b1a144d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/button/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ $icon-button-margin: rem(0.600) !default;

outline: none;
border: 0;
display: inline-table;
display: inline-flex;
align-items: center;
flex-direction: column;
padding: $button-padding;
margin: $button-margin;
line-height: $button-line-height;
Expand Down

3 comments on commit b1a144d

@hodeyp
Copy link

@hodeyp hodeyp commented on b1a144d Jun 17, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@robertmesserle this has screwed up the layout on md-list-item, the text is now centred on the list instead of left aligned...

0.10.0...

screen shot 2015-06-17 at 12 28 50

Master...

screen shot 2015-06-17 at 12 28 19

@kuhnroyal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This also screwed up the fabs :/
See: fab example

@robertmesserle
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just added a fix for this: b1046bc

Please let me know if this shows up anywhere else.

Please sign in to comment.