Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/components/AppHeader/AppHeader.vue b/src/components/AppHeader/AppHeader.vue
index 859a47f..5cda341 100644
--- a/src/components/AppHeader/AppHeader.vue
+++ b/src/components/AppHeader/AppHeader.vue
@@ -217,7 +217,7 @@
mounted() {
this.$root.$on(
'change-is-navigation-open',
- (isNavigationOpen) => (this.isNavigationOpen = isNavigationOpen)
+ (isNavigationOpen) => (this.isNavigationOpen = isNavigationOpen),
);
},
methods: {
@@ -246,7 +246,9 @@
<style lang="scss">
@mixin focus-box-shadow($padding-color: $navbar-color, $outline-color: $white) {
- box-shadow: inset 0 0 0 3px $padding-color, inset 0 0 0 5px $outline-color;
+ box-shadow:
+ inset 0 0 0 3px $padding-color,
+ inset 0 0 0 5px $outline-color;
}
.app-header {
.link-skip-nav {
@@ -385,7 +387,9 @@
height: $header-height;
line-height: 1;
&:focus {
- box-shadow: inset 0 0 0 3px $navbar-color, inset 0 0 0 5px color('white');
+ box-shadow:
+ inset 0 0 0 3px $navbar-color,
+ inset 0 0 0 5px color('white');
outline: 0;
}
}