@fishawack/lab-velocity 1.10.2 → 1.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,11 +14,11 @@ axios.interceptors.response.use(null, (error) => {
14
14
  if (error.response) {
15
15
  if (error.response.status === 401) {
16
16
  store.commit("setAuth", false);
17
- router.push({ name: `${store.state.auth.authBase}.login` });
17
+ window.router.push({ name: `${store.state.auth.authBase}.login` });
18
18
  }
19
19
 
20
20
  if (error.response.status === 404) {
21
- router.push({ name: "index" });
21
+ window.router.push({ name: "index" });
22
22
  }
23
23
  }
24
24
 
@@ -182,5 +182,5 @@ export function configureRoutes(router) {
182
182
  }
183
183
  }
184
184
  });
185
-
185
+ window.router = router;
186
186
  }
@@ -12,6 +12,8 @@
12
12
  position: sticky;
13
13
  top: 0vh;
14
14
  padding-top: 2 * $spacing;
15
+ min-width: get-ratio(64px);
16
+ flex-basis: get-ratio(64px);
15
17
 
16
18
 
17
19
  > div {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-velocity",
3
- "version": "1.10.2",
3
+ "version": "1.10.4",
4
4
  "description": "Avalere Health branded style system",
5
5
  "scripts": {
6
6
  "setup": "npm ci || npm i && npm run content",