My concern is related to the HTML tag below:
<a href="/partner-team/team" class="button button__style--1">MEHR</a>
This is how the CSS appears:
a {
text-decoration: none;
}
.button {
padding: 0.2rem 4rem;
cursor: pointer;
}
.button__style--1 {
color: #429a95 !important;
border: 2px solid #429a95;
transition: color .3s, background .3s;
background: white;
font-weight: 300;
}
When inspecting in Safari using Dev Tools, I notice the following issue:
https://i.stack.imgur.com/BzNZU.jpg
In Chrome, for instance, the Dev Tools show a different result:
https://i.stack.imgur.com/1vnoJ.png
I am puzzled why the text is positioned differently in Safari compared to other browsers like Chrome, Firefox, Opera, and Edge. Is there any solution available to ensure consistent rendering across all browsers?