diff --git a/button.scss b/button.scss index 0bff0ba..800f790 100644 --- a/button.scss +++ b/button.scss @@ -7,7 +7,6 @@ button, input[type="submit"], input[type="button"], a.button { cursor: pointer; min-width: 70px; - height: 2rem; background: var(--button-colored-background); color: var(--text-on-background-color-2); @@ -15,8 +14,11 @@ button, input[type="submit"], input[type="button"], a.button { padding: 0 1rem 0 1rem; flex: 0; height: 32px; + line-height: 32px; border: none; box-shadow: none; + display: inline-block; + text-align: center; &:hover { background: var(--button-colored-background-hover); diff --git a/styles.css b/styles.css index 47c19a2..4a1bab6 100644 --- a/styles.css +++ b/styles.css @@ -3851,15 +3851,17 @@ blockquote { button, input[type="submit"], input[type="button"], a.button { cursor: pointer; min-width: 70px; - height: 2rem; background: var(--button-colored-background); color: var(--text-on-background-color-2); margin: 0; padding: 0 1rem 0 1rem; flex: 0; height: 32px; + line-height: 32px; border: none; - box-shadow: none; } + box-shadow: none; + display: inline-block; + text-align: center; } button:hover, input[type="submit"]:hover, input[type="button"]:hover, a.button:hover { background: var(--button-colored-background-hover); } @@ -4385,3 +4387,5 @@ span.tag { color: var(--text-on-background-color-2); background: var(--button-colored-background); display: inline-block; } + +/*# sourceMappingURL=styles.css.map */