meez
meez

Reputation: 4759

How to theme Foundation 6 hollow button with sass

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

Answers (1)

therealbischero
therealbischero

Reputation: 224

.light-hollow-button{
    @include button-hollow;
    &:hover{
        color: // your color;
        border-color: // your color;
    }
}

Try with this!

Upvotes: 1

Related Questions