We hadn't added this rule before because there was no such rule in scss-lint. Instead, we were following it without a linter, and so we unintentionally broke it sometimes. But now we're using Stylelint, so we can add the rule and let the linter check we're still following it.
14 lines
237 B
SCSS
14 lines
237 B
SCSS
.remote-translations-button {
|
|
@include info-colors;
|
|
font-size: $small-font-size;
|
|
padding: rem-calc(6);
|
|
text-align: center;
|
|
|
|
[type="submit"] {
|
|
@include link;
|
|
background: none;
|
|
border: 0;
|
|
font-weight: bold;
|
|
}
|
|
}
|