@burh/nuxt-core 1.0.97 → 1.0.98
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.
|
@@ -133,6 +133,12 @@ export default {
|
|
|
133
133
|
sendTest() {
|
|
134
134
|
this.$emit("submit", this.slots);
|
|
135
135
|
|
|
136
|
+
this.resetSlots();
|
|
137
|
+
|
|
138
|
+
requestAnimationFrame(() => {
|
|
139
|
+
this.$refs.sendCourse.reset();
|
|
140
|
+
});
|
|
141
|
+
|
|
136
142
|
this.closeModal();
|
|
137
143
|
}
|
|
138
144
|
},
|
|
@@ -182,7 +188,7 @@ export default {
|
|
|
182
188
|
border-radius: 23rem;
|
|
183
189
|
font-weight: 400;
|
|
184
190
|
text-align: center;
|
|
185
|
-
background-color: rgba($color-primary, .1);
|
|
191
|
+
background-color: rgba($color-primary, 0.1);
|
|
186
192
|
color: $color-primary;
|
|
187
193
|
}
|
|
188
194
|
</style>
|