@asd20/ui 3.2.772 → 3.2.773
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.
package/package.json
CHANGED
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
We're sorry, it looks like you have a reached a location for a page that
|
|
6
6
|
doesn't exist.
|
|
7
7
|
</p>
|
|
8
|
+
<asd20-button class="go-back" reversed :link="referrerLink"
|
|
9
|
+
>Go back to the page you came from
|
|
10
|
+
</asd20-button>
|
|
11
|
+
<asd20-button class="go-back"reversed :link="homeLink"
|
|
12
|
+
>Go back to our Home Page
|
|
13
|
+
</asd20-button>
|
|
8
14
|
<asd20-list
|
|
9
15
|
v-if="suggestedPagesListItems.length > 0"
|
|
10
16
|
:items="suggestedPagesListItems"
|
|
@@ -49,6 +55,7 @@
|
|
|
49
55
|
|
|
50
56
|
<script>
|
|
51
57
|
import Asd20List from '../../organisms/Asd20List'
|
|
58
|
+
import Asd20Button from '../../atoms/Asd20Button'
|
|
52
59
|
import Asd20SiteNavigation from '../../../components/organisms/Asd20SiteNavigation'
|
|
53
60
|
import Asd20WidgetsSection from '../../../components/organisms/Asd20WidgetsSection'
|
|
54
61
|
|
|
@@ -62,6 +69,7 @@ import Intersect from 'vue-intersect'
|
|
|
62
69
|
export default {
|
|
63
70
|
components: {
|
|
64
71
|
Asd20List,
|
|
72
|
+
Asd20Button,
|
|
65
73
|
Asd20SiteNavigation,
|
|
66
74
|
Asd20WidgetsSection,
|
|
67
75
|
Intersect,
|
|
@@ -71,6 +79,8 @@ export default {
|
|
|
71
79
|
|
|
72
80
|
data: () => ({
|
|
73
81
|
suggestedPagesListItems: [],
|
|
82
|
+
referrerLink: document.referrer || window.location.origin,
|
|
83
|
+
homeLink: window.location.origin,
|
|
74
84
|
}),
|
|
75
85
|
|
|
76
86
|
mounted() {
|
|
@@ -116,9 +126,9 @@ export default {
|
|
|
116
126
|
small {
|
|
117
127
|
position: relative;
|
|
118
128
|
display: block;
|
|
119
|
-
font-size:
|
|
129
|
+
font-size: 20vw;
|
|
120
130
|
opacity: 1;
|
|
121
|
-
color:
|
|
131
|
+
color: rgb(245, 245, 245);
|
|
122
132
|
line-height: 1;
|
|
123
133
|
margin-bottom: -10vw;
|
|
124
134
|
z-index: -1;
|
|
@@ -127,6 +137,10 @@ export default {
|
|
|
127
137
|
p {
|
|
128
138
|
text-align: center;
|
|
129
139
|
}
|
|
140
|
+
.go-back {
|
|
141
|
+
margin: 1rem;
|
|
142
|
+
width: 30%;
|
|
143
|
+
}
|
|
130
144
|
.not-found {
|
|
131
145
|
display: flex;
|
|
132
146
|
height: 100%;
|