How to change the size of button label of a.link?

I have a sheet modal, but I can not change size of Cancel link button
I tried Link instead of Linklarge or remove it complety but still Cancel is in big fonts, can you help me ?

  .sheet-modal.my-sheet2
    .toolbar
      .toolbar-inner
        .left
        .right
          a.link.sheet-close.Linklarge(href="#") Cancel
    .sheet-modal-inner
      .block

sheetmodal

For example add to your CSS:

.sheet-modal .toolbar .right .Linklarge {
  font-size: 14px;
}

Or just add it inline:

.sheet-modal.my-sheet2
    .toolbar
      .toolbar-inner
        .left
        .right
          a.link.sheet-close.Linklarge(href="#", style="font-size: 14px") Cancel
    .sheet-modal-inner
      .block
1 Like