.button_menu
{
font-size: 12px;
padding: 10px;
display: flex;
}
.button-right
{
padding-left: 30px;
display: block;
width: 130px;
background-color: grey;
color: #fff;
text-align: center;
position: relative;
}
.button-right::before {
content: '';
position: absolute;
border: 11.5px solid transparent;
border-right: 11px solid grey;
border-bottom: 10px solid grey;
right: 130px;
top: 0;
}
.button-left
{
padding-left: 250px;
display: block;
width: 150px;
background-color: grey;
color: #fff;
text-align: center;
position: relative;
}
.button-left::before {
content: '';
position: absolute;
border: 11.5px solid transparent;
border-right: 11px solid grey;
border-bottom: 10px solid grey;
right: 150px;
top: 0;
}
https://jsfiddle.net/k73td2h9/