<div className="tariff__btn">
<button
className="tariff__btn-black"
onClick = {
() => {
this.popupAdvanceOpen()
this.showTargetElement()
}
}
>
Тарифы на asd
</button>
<button
className="tariff__btn-orange"
onClick = {
() => {
this.popupAccompOpen()
this.showTargetElement()
}
}
>
Тарифы на qwe
</button>
</div>
.tariff__btn {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: center;
margin-bottom: 120px;
}
.tariff__btn button {
margin-top: 7%;
margin-bottom: 5%;
padding: 20px 30px;
width: 570px;
font-size: 32px;
border: none;
border-radius: 100px;
outline: none;
cursor: pointer;
color: #ffffff;
}