-
+
+
@@ -104,16 +148,16 @@ body {
}
&__buttons {
- float: left;
margin: 1em;
- margin-left: 0;
margin-top: 2em;
+ margin-left: 0;
+ float: left;
}
&__info {
+ padding: 1em;
float: right;
font-family: 'Black Han Sans', sans-serif;
- padding: 1em;
text-align: right;
&__date {
@@ -137,23 +181,23 @@ body {
.footer {
position: absolute;
- left: 0;
bottom: 0;
- background-color: black;
+ left: 0;
width: 100%;
+ background-color: #000;
text-align: center;
&__logo {
margin: 2em;
img {
- height: 30%;
width: 15%;
+ height: 30%;
}
span {
display: block;
- color: white;
+ color: #fff;
font-family: 'Gothic A1', sans-serif;
font-size: 80%;
}
diff --git a/src/components/NumberInput.vue b/src/components/NumberInput.vue
index 59c12df..b54b307 100644
--- a/src/components/NumberInput.vue
+++ b/src/components/NumberInput.vue
@@ -4,43 +4,46 @@ export default {
props: {
value: {
type: Number,
- default: 1
+ default: 1,
},
- max : {
+ max: {
type: String,
- default: 1
- }
+ default: '1',
+ },
},
- data () {
+ data() {
return {
- innerValue: this.value
- }
+ innerValue: this.value,
+ };
},
watch: {
- innerValue (val) {
- this.$emit('input', val)
+ innerValue(val) {
+ this.$emit('input', val);
},
- value (val) {
- this.innerValue = val
- }
- }
-}
+ value(val) {
+ this.innerValue = val;
+ },
+ },
+};
-
+
diff --git a/src/main.js b/src/main.js
index c9beb75..526fdc9 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,14 +1,14 @@
-import Vue from 'vue'
-import axios from 'axios'
-import moment from 'moment'
+import Vue from 'vue';
+import axios from 'axios';
+import moment from 'moment';
-import App from './App.vue'
-import './assets/style.css'
+import App from './App.vue';
+import './assets/style.css';
-Vue.prototype.$api = axios
-Vue.prototype.moment = moment
+Vue.prototype.$api = axios;
+Vue.prototype.moment = moment;
new Vue({
el: '#app',
- render: h => h(App)
-})
+ render: h => h(App),
+});
diff --git a/src/pages/Alarm.vue b/src/pages/Alarm.vue
index b3585c6..6f35a98 100644
--- a/src/pages/Alarm.vue
+++ b/src/pages/Alarm.vue
@@ -1,25 +1,29 @@
-
알람
-
서비스 준비중입니다.
+
+ 알람
+
+
+ 서비스 준비중입니다.
+
diff --git a/src/pages/Index.vue b/src/pages/Index.vue
index ce686d4..6004772 100644
--- a/src/pages/Index.vue
+++ b/src/pages/Index.vue
@@ -1,128 +1,138 @@
-
-
-
{{ lecture.subject }}
-
제 {{ lecture.idx }}교시
+
+
+ {{ lecture.subject }}
+
+
+ 제 {{ lecture.idx }}교시
+
-
+
{{ getTimePeriod(lecture) }}
이택주 T
@@ -130,72 +140,76 @@ export default {
-
{{ dimibobTitle }}
-
{{ dimibob[dimibobTitle.toLowerCase()] }}
+
+ {{ dimibobTitle }}
+
+
+ {{ dimibob[dimibobTitle.toLowerCase()] }}
+
diff --git a/src/pages/Week.vue b/src/pages/Week.vue
index b2e6941..192398b 100644
--- a/src/pages/Week.vue
+++ b/src/pages/Week.vue
@@ -1,70 +1,76 @@
-
주간 시간표
-
{{ helpText }}
+
+ 주간 시간표
+
+
+ {{ helpText }}
+
-
+
@@ -75,14 +81,14 @@ export default {