I think I may have found the CSS code :
@media all {
*,*::before,*::after{
box-sizing:inherit;
}
}
@media all {
div,a{
margin:0;
padding:0;
border:0;
vertical-align:baseline;
font:inherit;
font-size:100%;
}
*{
box-sizing:border-box;
}
*:before,*:after{
box-sizing:border-box;
}
a{
touch-action:manipulation;
}
a{
color:#3f3f3f;
text-decoration:none;
transition:all .25s ease;
}
a:hover,a:focus,a:active{
outline:none;
text-decoration:none;
}
a:focus{
outline:none;
}
.reset-mb-10 > *:last-child{
margin-bottom:0;
}
.whb-text-element{
flex:1 1 auto;
}
.whb-text-element{
padding-right:10px;
padding-left:10px;
}
}
a:hover{
color:#83b735;
}
However, I still face some struggle to apply this code into the button. I’ve assigned the new class “desktop-header-button” to the HTML link.
But how can I link the above CSS code to this new class ?
Thanks