diff options
Diffstat (limited to 'src/app/components/profile')
| -rw-r--r-- | src/app/components/profile/profile.component.css | 4 | ||||
| -rw-r--r-- | src/app/components/profile/profile.component.html | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/app/components/profile/profile.component.css b/src/app/components/profile/profile.component.css index 22ad320..c7e112f 100644 --- a/src/app/components/profile/profile.component.css +++ b/src/app/components/profile/profile.component.css @@ -16,6 +16,10 @@ margin-bottom: 0.3em; } +.none-message { + margin-bottom: 0.3em; +} + .sec-info { width: fit-content; background-color: #424242; diff --git a/src/app/components/profile/profile.component.html b/src/app/components/profile/profile.component.html index 2a8786d..7632620 100644 --- a/src/app/components/profile/profile.component.html +++ b/src/app/components/profile/profile.component.html @@ -25,7 +25,7 @@ <div class="sec-info-title faded-slim-border border-bottom-only"> Languages </div> - <div *ngIf="user.languages.length === 0"> + <div class="none-message" *ngIf="user.languages.length === 0"> None </div> <div class="flex-row" *ngFor="let lang of user.languages"> @@ -38,7 +38,7 @@ <div class="sec-info-title faded-slim-border border-bottom-only"> Technologies </div> - <div *ngIf="user.technologies.length === 0"> + <div class="none-message" *ngIf="user.technologies.length === 0"> None </div> <div class="flex-row" *ngFor="let tech of user.technologies"> |
