@burh/nuxt-core 1.0.190 → 1.0.192
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.
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
text-transform: $table-head-text-transform;
|
|
15
15
|
letter-spacing: $table-head-letter-spacing;
|
|
16
16
|
border-bottom: $table-border-width solid $table-border-color;
|
|
17
|
-
border-top: $table-border-width
|
|
17
|
+
border-top: $table-border-width $table-border-color;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
th {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
v-for="item in modalData.slice((currentPage-1)*pageSize,currentPage*pageSize)"
|
|
13
13
|
:key="item.id"
|
|
14
14
|
>
|
|
15
|
-
<div class="checklist-item checklist-item-info">
|
|
15
|
+
<div v-if='item.test' class="checklist-item checklist-item-info">
|
|
16
16
|
<div class="checklist-info">
|
|
17
17
|
<h5 class="checklist-title mb-0 mr-4">{{item.test.name}} - <small>{{$moment(item.created_at).format('DD/MM/YYYY H:mm')}}</small></h5>
|
|
18
18
|
<badge v-if="item.finished_at" :type="item.avarage < courseInfo.course.minimun_score ? 'danger' : 'secondary'">Nota: {{item.avarage}}</badge>
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<footer class="products--info__footer">
|
|
88
88
|
<div class="footer__links">
|
|
89
89
|
<div class="burh__logo">
|
|
90
|
-
<img src="/img/brand/burh-imagotipo
|
|
90
|
+
<img src="/img/brand/burh-imagotipo.svg" alt="Burh">
|
|
91
91
|
</div>
|
|
92
92
|
<ul>
|
|
93
93
|
<li><a :href="`${url}/sobre-o-burh`" target="_blank">Sobre o Burh</a></li>
|
|
@@ -122,7 +122,7 @@ export default {
|
|
|
122
122
|
</script>
|
|
123
123
|
|
|
124
124
|
<style lang="scss" scoped>
|
|
125
|
-
$primaryColor: #
|
|
125
|
+
$primaryColor: #1da1f1;
|
|
126
126
|
|
|
127
127
|
.products--info {
|
|
128
128
|
max-width: calc(1360px + 40px * 2);
|
|
@@ -213,7 +213,7 @@ $primaryColor: #5983FE;
|
|
|
213
213
|
img {
|
|
214
214
|
display: block;
|
|
215
215
|
width: 100%;
|
|
216
|
-
filter: brightness(0.5);
|
|
216
|
+
// filter: brightness(0.5);
|
|
217
217
|
}
|
|
218
218
|
@media (max-width: 1150px) {
|
|
219
219
|
& {
|