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.
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
<
|
|
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
|
-
</
|
|
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