Compare commits

..

4 Commits

Author SHA1 Message Date
5351a2ba58 project tile changes 2024-05-19 12:23:35 +05:30
0bb9097513 code refactoring 2024-05-19 11:37:27 +05:30
d7cad0d5c7 style Changes 2024-05-09 20:01:15 +05:30
c051f4f60e code refactoring 2024-05-09 13:47:11 +05:30
4 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,4 @@
import { Component } from '@angular/core';
import { LoaderService } from './services/loader.service';
@Component({
selector: 'app-root',

View File

@ -49,7 +49,7 @@
<div class="contact-info">
<p class="contact-title">Phone</p>
<a href="tel:+12133522795" class="contact-link">{{model.candidate?.phone}}</a>
<a href="tel:{{model.candidate?.phone}}" class="contact-link">{{model.candidate?.phone}}</a>
</div>
</li>

View File

@ -57,9 +57,9 @@
</figure>
<h3 class="project-title">{{project.name}}</h3>
<span class="project-category" *ngFor="let category of project.categories; index as i" [ngClass]="i > 0 ? 'inline no-margin' : 'inline'">{{i > 0 ? ', ' + category : category}}</span>
<div class="project-category">
<span *ngFor="let responsbility of project.responsibilities; index as i" class="inline">{{i > 0 ? ', ' + responsbility : responsbility}}</span>
</div>
</a>
</li>

View File

@ -504,7 +504,7 @@
line-height: 1.6;
}
.about-text p { margin-bottom: 15px; }
.about-text pre { margin-bottom: 15px; }
@ -1255,7 +1255,7 @@
.project-img,
.blog-banner-box { height: auto; }
}
@ -1394,7 +1394,7 @@
.about .article-title { margin-bottom: 20px; }
.about-text { margin-bottom: 40px; }
.about-text { margin-bottom: 35px; }
/* service */