Get Next button Unreadable in safari
# Summary The Get Next button in safari looks not the same as in other browsers, which makes it unreadable. ![Schermafbeelding_2022-09-07_om_15.48.57](/uploads/8af20bb32a49a8ed21324e976d3bf763/Schermafbeelding_2022-09-07_om_15.48.57.png) instead of ![Schermafbeelding_2022-09-07_om_15.52.34](/uploads/9bc514b38fa4ab0c1511c34b002f620d/Schermafbeelding_2022-09-07_om_15.52.34.png) # Steps to reproduce 1. Use Safari on a Mac 2. Go to the Request page # Possible Fix The CSS in Bootstrap v4.3.1 that does this is: ```css button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } ``` This could be fixed by upgrading bootstrap, but I heard that breaks other things. Another way could be overwriting `-webkit-appearance` to `none`. So adding ```css button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: none; } ```
issue