Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 8c00515

Browse files
committed
Merge pull request #347 from appirio-tech/feature/tom-remove-clickable-track-empty
Fixed empty state track clickability
2 parents cf25fe4 + 32ae0ad commit 8c00515

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

app/profile/about/about.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
.empty-state(ng-if="!profileVm.numProjects")
3636
.action-text Start competing within the community
3737
.tracks
38-
.track(ng-repeat="track in ['DEVELOP', 'DESIGN', 'DATA_SCIENCE']")
38+
.track.noclick(ng-repeat="track in ['DEVELOP', 'DESIGN', 'DATA_SCIENCE']")
3939
div(class="{{profileVm.imgMap[track]}}-icon")
4040
div
4141
.text {{track | track}}

assets/css/profile/about.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
align-items: center;
3737
cursor: pointer;
3838

39+
&.noclick {
40+
cursor: default;
41+
}
42+
3943
.name {
4044
span {
4145
}
@@ -149,6 +153,10 @@
149153
justify-content: space-between;
150154
width: 50%;
151155
.track {
156+
.text {
157+
margin-top: 15px;
158+
text-transform: uppercase;
159+
}
152160
}
153161
}
154162
.description {

0 commit comments

Comments
 (0)