//
// Browser hacks
//

@mixin remove-child-text-decoration {
    // [IE11] HACK: remove underline by setting and unsetting it.
    // https://stackoverflow.com/a/31330454

    & {
        text-decoration: underline;
    }

    & {
        text-decoration: none;
    }
}
