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

Commit 32ae0ad

Browse files
committed
Fixed empty state track clickability
1 parent 5789afa commit 32ae0ad

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
}
@@ -147,6 +151,10 @@
147151
justify-content: space-between;
148152
width: 50%;
149153
.track {
154+
.text {
155+
margin-top: 15px;
156+
text-transform: uppercase;
157+
}
150158
}
151159
}
152160
.description {

0 commit comments

Comments
 (0)