normalize-unistyle
Version:
Normalize CSS as a Unistyle module
24 lines (22 loc) • 451 B
JavaScript
;
Object.defineProperty(exports, '__esModule', {
value: true
});
var NO_OUTLINE = {
outline: 0
};
exports['default'] = {
/**
* Remove the gray background color from active links in IE 10.
*/
a: {
'backgroundColor': 'transparent',
/**
* Improve readability of focused elements when they are also in an
* active/hover state.
*/
':active': NO_OUTLINE,
':hover': NO_OUTLINE
}
};
module.exports = exports['default'];