Skip to content

Commit

Permalink
Fix: removing duplicate #heading tags (fixes #160)
Browse files Browse the repository at this point in the history
  • Loading branch information
admwx7 authored Sep 20, 2017
1 parent 6f7474e commit 04b7a85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions paper-date-picker.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@
height: 248px;
@apply(--layout-horizontal);
}
#heading {
width: 168px;
@apply(--paper-date-picker-heading);
}

/** Narrow *********************/
:host([narrow]) #datePicker {
Expand All @@ -95,15 +91,19 @@
width: auto;
height: 96px;
padding: 16px 24px;
@apply(--paper-date-picker-heading--narrow);
}

/** Heading ********************/
#heading {
width: 168px;
padding: 16px;
box-sizing: border-box;
color: var(--text-primary-color);
background: var(--default-primary-color);

@apply(--layout-vertical);
@apply(--paper-date-picker-heading);
}
#heading .date,
#heading .year {
Expand Down

0 comments on commit 04b7a85

Please sign in to comment.