From SO: http://bit.ly/2wTR1ph
You will need to set border, box-shadow and background to 0/none to remove any greyish appearance as seen on button. Then to remove the rounded corners set border-radius to 0px.
Rules are :
.flat-button
/* Or better yet try giving an ID or class if possible*/
{
border: 0;
background: none;
box-shadow:none;
border-radius: 0px;
}