Reputation: 4759
I try to theme my own hollow button with sass for my Foundation 6 theme:
.light-hollow-button{
@include button-hollow;
}
But how do I have to style the link color, border-color and border-color on hover?
Upvotes: 0
Views: 248
Reputation: 224
.light-hollow-button{
@include button-hollow;
&:hover{
color: // your color;
border-color: // your color;
}
}
Try with this!
Upvotes: 1