diff --git a/frontend/src/assets/css/catalog.css b/frontend/src/assets/css/catalog.css index 550f793..cccdc9c 100644 --- a/frontend/src/assets/css/catalog.css +++ b/frontend/src/assets/css/catalog.css @@ -37,7 +37,7 @@ h1, h2, h3, h4, h5, h6 { /* Intro */ .intro { width: 100%; - height: 100vh; + min-height: 100vh; display: flex; flex-direction: column; justify-content:center; diff --git a/frontend/src/assets/css/offer.css b/frontend/src/assets/css/offer.css index a983465..6976f96 100644 --- a/frontend/src/assets/css/offer.css +++ b/frontend/src/assets/css/offer.css @@ -242,7 +242,15 @@ h1, h2, h3, h4, h5, h6 { margin: 1% 0; } +.rewiew__comment{ + padding-left: 10px; +} + .review__stars { display: flex; flex-direction: row; +} + +.user__stat{ + padding-right: 10px; } \ No newline at end of file diff --git a/frontend/src/components/ProfileAbout.vue b/frontend/src/components/ProfileAbout.vue index 46ee91a..2f053c2 100644 --- a/frontend/src/components/ProfileAbout.vue +++ b/frontend/src/components/ProfileAbout.vue @@ -22,8 +22,8 @@ export default { computed: { ...mapGetters({ user: 'user' }), name() { - return this.user.last_name && this.user.first_name && this.user.middle_name - ? `${this.user.last_name} ${this.user.first_name} ${this.user.middle_name}` + return this.user.last_name && this.user.first_name + ? `${this.user.last_name} ${this.user.first_name} ${this.user.middle_name ?? ''}` : 'Не указано'; } } diff --git a/frontend/src/components/ProfileAddOffer.vue b/frontend/src/components/ProfileAddOffer.vue index e0baf0a..16e3b54 100644 --- a/frontend/src/components/ProfileAddOffer.vue +++ b/frontend/src/components/ProfileAddOffer.vue @@ -20,7 +20,7 @@