Skip to content

Commit

Permalink
Merge branch 'pr/41-adds-card-border-radius-as-suggested-by-material-…
Browse files Browse the repository at this point in the history
…design-guidelines'
  • Loading branch information
Güray Yarar committed Jun 21, 2017
2 parents 20fffd2 + 1df9096 commit 699a2e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2818,7 +2818,11 @@ section.content {
min-height: 50px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
position: relative;
margin-bottom: 30px; }
margin-bottom: 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px; }
.card .card-inside-title {
margin-top: 25px;
margin-bottom: 15px;
Expand Down
2 changes: 1 addition & 1 deletion css/style.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions scss/_card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
position: relative;
margin-bottom: 30px;
@include border-radius(2px);

.card-inside-title {
margin-top: 25px;
Expand Down

0 comments on commit 699a2e8

Please sign in to comment.