Utilizing Bootstrap 3.3 and following a mobile-first approach in authoring. Below is the CSS snippet:
.link{
display: block;
margin: 7px auto;
text-align: center;
/*Tablets+ only*/
@media(min-width: 768px){
float: right;
position: relative;
top: 10px;
}
In the given code, properties intended for mobile (xs) size are also affecting tablet+ sizes along with additional properties. What would be the most effective method to modify this code so that mobile properties do not affect tablet+ sizes?