div.text-resize-buttons {
    display: flex;
    justify-content: space-between;
}

button.text-resize {
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0 10px;
}

button.text-resize-decrease::before {
    content: 'A-';
}

button.text-resize-reset::before {
    content: 'A';
}

button.text-resize-increase::before {
    content: 'A+';
}

button.text-resize[disabled] {
    display: none;
}