Remove capitalize from card heading (#1455)

fix: https://github.com/home-assistant/ui-schema/issues/107
This commit is contained in:
c727 2018-07-17 08:45:52 +02:00 committed by Paulus Schoutsen
parent bac1c8f630
commit 5c5a7e50da

View File

@ -18,7 +18,6 @@ class HaCard extends PolymerElement {
@apply --paper-font-common-expensive-kerning; @apply --paper-font-common-expensive-kerning;
opacity: var(--dark-primary-opacity); opacity: var(--dark-primary-opacity);
padding: 24px 16px 16px; padding: 24px 16px 16px;
text-transform: capitalize;
} }
</style> </style>
@ -31,9 +30,7 @@ class HaCard extends PolymerElement {
static get properties() { static get properties() {
return { return {
header: { header: String
type: String,
},
}; };
} }
} }