CodeSandbox:
https://codesandbox.io/s/eloquent-haibt-1bnib?file=/src/main.js
https://i.sstatic.net/HDtft.png
I'm trying to center the dash text within a button, but I'm struggling to find a solution.
html
<button class="round-button align-middle mr-1">
<span>-</span>
</button>
css
.round-button {
min-width: 20px;
max-height: 20px;
text-decoration: none;
display: inline-block;
outline: none;
cursor: pointer;
border-style: none;
color: white;
background-color: #3498db;
border-radius: 100%;
overflow: none;
text-align: center;
padding: 0;
}
.round-button:before {
content: "";
display: inline-block;
vertical-align: middle;
}