barbican-reset 1.4.4 → 1.4.5

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.
@@ -73,7 +73,7 @@ export default {
73
73
 
74
74
  <style lang="scss" module>
75
75
 
76
- @import "../helpers/mixins/index.scss";
76
+ @import "../helpers";
77
77
 
78
78
  .svg {
79
79
  fill: white;
@@ -24,7 +24,7 @@ export default {
24
24
 
25
25
  <style lang="scss" module>
26
26
 
27
- @import "../helpers/mixins/index.scss";
27
+ @import "../helpers";
28
28
 
29
29
  .component {
30
30
  border-radius: $border-radius-lg;
@@ -35,6 +35,14 @@ export default {
35
35
  gap: 1rem;
36
36
  }
37
37
 
38
+ nav a {
39
+ @include focus {
40
+ @include single-box($white);
41
+ background-color: $white;
42
+ color: $black;
43
+ }
44
+ }
45
+
38
46
  &:not(.splash) {
39
47
  padding-bottom: 3.75rem;
40
48
  }
@@ -1,12 +1,10 @@
1
1
  <template>
2
- <div :class="$style.lockup">
3
- <a href="//www.cityoflondon.gov.uk" target="_blank">
4
- <city-of-london-logo />
5
- </a>
2
+ <a :class="$style.lockup" href="//www.cityoflondon.gov.uk" target="_blank">
3
+ <city-of-london-logo />
6
4
  <small>
7
5
  The City of London<br />Corporation is the founder<br />and principal funder of<br />the Barbican Centre
8
6
  </small>
9
- </div>
7
+ </a>
10
8
  </template>
11
9
 
12
10
  <script>
@@ -21,10 +19,17 @@ export default {
21
19
 
22
20
  <style lang="scss" module>
23
21
 
22
+ @import "../helpers";
23
+
24
24
  .lockup {
25
+ text-decoration: none;
25
26
  display: inline-flex;
26
27
  align-items: center;
27
- gap: 0.625rem;
28
+ gap: 0.625rem;
29
+
30
+ @include focus {
31
+ text-decoration: underline;
32
+ }
28
33
  }
29
34
 
30
35
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {