# Browser Overrides
Target your SCSS code to only apply to IE11
# How to
To apply the IE11 override in your SCSS, include the mixin like this:
# SCSS Example:
@include apply-to-ie11() {
display: none;
// etc.
}
# SCSS
To use these styles in a Vue component SCSS, you’ll need:
@import '~@skyline/scss/src/core/UI.required';
@include apply-to-ie11();