Fix Chrome button text-align = center default

Chrome would override class styles on buttons in cards. Added text-align to existing selector, and added selector to existing style.
This commit is contained in:
SenorSmartyPants
2022-01-11 18:46:38 -06:00
parent 12d65a9459
commit ddb6a6ab65
+3 -1
View File
@@ -333,6 +333,7 @@ button::-moz-focus-inner {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
}
.innerCardFooter > .cardText {
@@ -355,7 +356,8 @@ button::-moz-focus-inner {
background-position: center center;
}
.cardTextCentered {
.cardTextCentered,
.cardTextCentered > .textActionButton {
text-align: center;
}