PolymerElements / paper-card

A Material Design piece of paper with unique related data
https://www.webcomponents.org/element/PolymerElements/paper-card
98 stars 62 forks source link

Question: Is there a way to control font-size of headline? #94

Closed atifwaqar closed 7 years ago

atifwaqar commented 7 years ago

My code looks like :

<paper-card heading="0 Live Campaigns">
    <div class="card-actions">
        <div>
            ....
            {{model.CampaignsStats}}
            ....
        </div>                                    
    </div>
</paper-card>

but I want to increase/decrease the header font size depending on its content size, and also want to center allign the header. I tried to find some reference in your code examples, but couldn't find it. Any sort of help would be really appreciated. Thanks in advance :)

notwaldorf commented 7 years ago

Yup, there's the --paper-card-header-text mixin:

paper-card.smaller-text {
      --paper-card-header-text: {
        font-size: 10px;
      };
}