forked from Tokyo-Metro-Gov/covid19
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNoScript.vue
84 lines (77 loc) · 1.71 KB
/
NoScript.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<template>
<!-- eslint-disable vue/html-indent -->
<noscript inline-template>
<div>
<style>
.loader {
display: none;
}
.v-overlay {
display: none;
}
@media screen and (max-width: 600px) {
.appContainer {
margin-bottom: 150px;
}
}
@media screen and (min-width: 601px) {
.appContainer {
margin-top: 100px;
}
}
</style>
<div class="noscript-body">
{{ $t('当サイトではJavaScriptを使用しております。') }}<br />
{{
$t(
'JavaScriptを無効にして使用された場合、各ページが正常に動作しない、または、表示されない場合がございます。'
)
}}<br />
{{
$t(
'当サイトをご利用の際には、JavaScriptを有効にして頂きますようお願いいたします。'
)
}}
</div>
</div>
</noscript>
<!--eslint-enable-->
</template>
<style lang="scss" scoped>
@include lessThan($small) {
.noscript-body {
position: fixed;
bottom: 0;
color: rgba(0, 0, 0, 0.87);
}
}
@include largerThan($small) {
.noscript-body {
position: fixed;
top: 0;
margin-left: 240px;
width: calc(100% - 240px);
}
}
@include largerThan($huge) {
.noscript-body {
margin-left: 324px;
width: calc(100% - 324px);
max-width: 1100px;
}
}
.noscript-body {
@include font-size(13);
@include card-container();
background-color: #ffe200;
border-radius: 4px;
padding: 1em;
z-index: 3;
}
</style>
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({
//
})
</script>