diff --git a/frontend/src/views/social/VocabCourseView.vue b/frontend/src/views/social/VocabCourseView.vue index 98d32a4..9b6e9fa 100644 --- a/frontend/src/views/social/VocabCourseView.vue +++ b/frontend/src/views/social/VocabCourseView.vue @@ -23,7 +23,7 @@
| {{ $t('socialnetwork.vocab.courses.lessonNumber') }} | +# | {{ $t('socialnetwork.vocab.courses.title') }} | Status | Aktionen | @@ -284,10 +284,15 @@ export default { .lessons-table th.col-number, .lessons-table td.lesson-number { - width: 80px; - min-width: 80px; - max-width: 80px; + width: 50px; + min-width: 50px; + max-width: 50px; overflow: visible; + text-align: center; +} + +.lessons-table th.col-number { + text-align: center; } .lessons-table th.col-title, @@ -332,6 +337,8 @@ export default { font-weight: 600; color: #666; font-size: 0.95em; + text-align: center; + display: block; } .lesson-title {
|---|