I have an angular material button:
<a mat-raised-button class="buttons-class" color="accent">Hello!</a>
And I have increased its size:
.buttons-class {
height: 60px !important;
width: 210px !important;
align-items: center;
}
Now, I wish to center the text (Hello!) within it. Currently the text is offset like this:
Putting the text in a span or div and using the standard centering techniques didn't work.
