# Focus Outline
Apply the Skyline default focus outline in your SCSS
# How to
To pull the focus styling into your SCSS, include the mixin like this:
# SCSS Example:
.your-element-that-needs-focus-state {
&:focus {
@include focus-outline;
}
}
# SCSS
To use these styles in a Vue component SCSS, you’ll need:
@import '~@skyline/scss/src/core/UI.required';
@include focus-outline($pixels, $color, $outerColor, $inset);
$pixels: <number>
1px
$color: <color>
#fff
$outerColor: <color>
get-gray(800)
$inset: <'inset'|''>
''
To use these styles in a Vue component SCSS, you’ll need:
@import '~@skyline/scss/src/core/UI.required';
@include skyline-apply-focus-outline($child-selector, $inset);
$child-selector: <string>
''
$inset: <string>
''