Skip to content

Commit

Permalink
Fixed remaining errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvaeth committed Oct 16, 2019
1 parent 767ea75 commit 030bb9f
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 21 deletions.
4 changes: 3 additions & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"warn"
]
}],
"no-empty-source": false
"font-family-no-missing-generic-family-keyword": null,
"no-descending-specificity": null,
"no-empty-source": null
}
}
1 change: 1 addition & 0 deletions examples/views/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<br><a href='competition-carousel.html'>competition-carousel</a><br>
<br><a href='competition.html'>competition</a><br>
<br><a href='compile-card.html'>compile-card</a><br>
<br><a href='course-card-new.html'>course-card-new</a><br>
<br><a href='daily-goal-card-small.html'>daily-goal-card-small</a><br>
<br><a href='daily-goal-card.html'>daily-goal-card</a><br>
<br><a href='dcb-card.html'>dcb-card</a><br>
Expand Down
1 change: 0 additions & 1 deletion sass/styles/applications/hb/components/hb-leaderboard.scss
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

2 changes: 1 addition & 1 deletion sass/styles/applications/hb/settings/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $gradient-orange-lr: linear-gradient(to right, #ec6333, #f19633);
$gradient-black-bt: linear-gradient(to top, #1b1d27, #07080b);
$gradient-nostalgia-purple: linear-gradient(to right, #691e68, #695186);

$button-gradient-green: linear-gradient(to-right, #82da3b, #27a87c, #82da3b);
$button-gradient-green: linear-gradient(to right, #82da3b, #27a87c, #82da3b);
$button-gradient-orange: linear-gradient(to right, #ec6333, #f19633, #ec6333);
// Gradient List

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
@include dimensions(30%, 100%);

overflow-y: auto;
background-color: $vp-background;
transition: transform 0.35s ease;
background: $white;
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,12 @@
@media (max-width: 767px) {
.c-online-card {
display: flex;
font-size: $font-xs;

.card-mentor {
margin-top: 0;
}

display: flex;
font-size: $font-xs;

.round-img-b {
position: static;
}
Expand Down
5 changes: 5 additions & 0 deletions sass/styles/elements/button.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
button {
padding: 0;

&:disabled {
color: $dark-grey;
cursor: default;
}
}
5 changes: 0 additions & 5 deletions sass/styles/objects/buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,3 @@
pointer-events: none;
}
}

button:disabled {
color: $dark-grey;
cursor: default;
}
1 change: 0 additions & 1 deletion sass/styles/objects/home.search.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.input-search {
@include border-radius(28px);

background-color: $search-box-color;
position: relative;
border: none;
background-color: transparent;
Expand Down
2 changes: 0 additions & 2 deletions sass/styles/objects/navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@

.pointer {
cursor: pointer;
}

.pointer {
.notify-dot {
position: absolute;
}
Expand Down
2 changes: 0 additions & 2 deletions sass/styles/objects/skeleton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@

.rod-component-small {
margin-top: 10px;
}

.rod-component-small {
.skeleton-lg {
@extend %skeleton;

Expand Down
4 changes: 0 additions & 4 deletions sass/styles/utilities/font.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ $list: (font-xs, $font-xs) (font-sm, $font-sm) (font-mds, $font-mds) (font-md, $
font-style: italic !important;
}

.bold {
font-weight: $font-medium !important;
}

.normal {
font-weight: $font-normal !important;
}
Expand Down

0 comments on commit 030bb9f

Please sign in to comment.