diff --git a/src/app/post/components/post-card/post-card.component.html b/src/app/post/components/post-card/post-card.component.html index 1db7cd7e0401d07effddba763f27f28d020eeae5..78a4c3ef0fedf1dd43c8e3e02be1cacc5071363e 100644 --- a/src/app/post/components/post-card/post-card.component.html +++ b/src/app/post/components/post-card/post-card.component.html @@ -16,7 +16,7 @@ <span>{{ post.tags[0].name }}</span> </div> <div fxLayout="row" class="imageContainer" *ngIf="post.feature_image"> - <img class="image" [src]="post.feature_image" /> + <img class="image" alt="image about the news" [src]="post.feature_image" /> </div> <div fxLayout="row" class="title"> {{ post.title }} diff --git a/src/app/post/components/post-details/post-details.component.html b/src/app/post/components/post-details/post-details.component.html index 2e2136a31fe1b742d03da414373b94d6ac6ef80b..dee0903eebfbe31baec840cb88047f446f239ad9 100644 --- a/src/app/post/components/post-details/post-details.component.html +++ b/src/app/post/components/post-details/post-details.component.html @@ -29,7 +29,7 @@ <div fxLayout="row">par {{ post.author }}</div> </div> <div fxLayout="row" class="imageContainer" *ngIf="post.feature_image"> - <img class="image" [src]="post.feature_image" /> + <img class="image" alt="image about the news" [src]="post.feature_image" /> </div> <div fxLayout="row" class="description"> <div [innerHtml]="post.safeHtml"></div> diff --git a/src/app/post/components/post-details/post-details.component.scss b/src/app/post/components/post-details/post-details.component.scss index 4968643522f382caa77aa4b229a281fcb61c2326..1adbe3606c607884214c4cd180250ac4a2eb4fc3 100644 --- a/src/app/post/components/post-details/post-details.component.scss +++ b/src/app/post/components/post-details/post-details.component.scss @@ -10,7 +10,7 @@ $margin-post: 20px; max-width: 832px; margin: $margin-post auto; min-height: calc( - var(--vh, 1vh) * 100 - #{$header-height} - #{$footer-height} - #{$header-post-height} - #{$margin-post}* 3 + var(--vh, 1vh) * 100 - #{$header-height} - #{$footer-height} - #{$header-post-height} - #{$margin-post} * 3 ); .chevronLeft { height: 24px; diff --git a/src/app/post/components/post-publish/post-publish.component.scss b/src/app/post/components/post-publish/post-publish.component.scss index 8c66547d0f1d8ee5a7a8e5cabfdfbc5cc34bf6ef..05cb307a759204c4e1d3fec30ce286b23838eda3 100644 --- a/src/app/post/components/post-publish/post-publish.component.scss +++ b/src/app/post/components/post-publish/post-publish.component.scss @@ -9,7 +9,7 @@ $margin-post: 20px; width: 95%; margin: $margin-post auto; min-height: calc( - var(--vh, 1vh) * 100 - #{$header-height} - #{$footer-height} - #{$header-post-height} - #{$margin-post}* 2 + var(--vh, 1vh) * 100 - #{$header-height} - #{$footer-height} - #{$header-post-height} - #{$margin-post} * 2 ); } .chevronLeft { diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html index 45f184ad15b5c6cf668edb549139c729b9c88c45..66be72664b42d3c789ddd3e652bc1d05581d41c1 100644 --- a/src/app/profile/profile.component.html +++ b/src/app/profile/profile.component.html @@ -2,7 +2,7 @@ <div class="profileSection"> <div class="section-container" fxLayout="row"> <ng-container *ngIf="userProfile.profileImage"> - <img class="cameraProfile" src="userProfile.profileImage"> + <img class="cameraProfile" alt="image of profile" src="userProfile.profileImage" /> </ng-container> <div class="profileInformation" fxLayoutGap="18px" fxLayout="column"> <div fxLayout="row" fxLayoutAlign="space-between center"> diff --git a/src/app/shared/components/button/button.component.scss b/src/app/shared/components/button/button.component.scss index 04a71d5474b03e28d28e5f30fb4f697387116d54..4cea9a7352ddd480b6aa1f64232a1fe4c0fefe45 100644 --- a/src/app/shared/components/button/button.component.scss +++ b/src/app/shared/components/button/button.component.scss @@ -48,7 +48,6 @@ button { border-radius: 4px; @include btn-bold; font-size: 16px; - border-radius: 4px; &.withIcon { color: $black; height: 36px;