Skip to content

Commit 1c1dfb7

Browse files
author
Krystle Salazar
committed
Fix color on hover state of scholarship buttons and links
Related to #48.
1 parent 9fdb32a commit 1c1dfb7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

legal_db/static/styles.scss

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
$color-tomato: rgb(237, 89, 47);
22
$color-brighter-tomato: rgb(255, 105, 51);
33
$color-dark-turquoise: rgb(5, 181, 218);
4-
$color-forest-green:rgb(4,166,53);
4+
$color-forest-green: rgb(4,166,53);
5+
$color-brighter-forest-green: rgb(0, 184, 80);
56
$color-dark-slate-blue: rgb(60, 92, 153);
67
$color-dark-gray: rgb(118, 118, 118);
78
$color-dark-slate-gray: rgb(51, 51, 51);
@@ -66,6 +67,11 @@ a, a:hover {
6667
border-color: $color-forest-green;
6768
color: white;
6869

70+
&:hover {
71+
background-color: $color-brighter-forest-green;
72+
border-color: $color-brighter-forest-green;
73+
}
74+
6975
&.tag {
7076
background-color: white;
7177
color: $color-dark-gray;
@@ -115,6 +121,9 @@ a, a:hover {
115121
&:hover.has-background-tomato {
116122
background-color: $color-brighter-tomato !important;
117123
}
124+
&:hover.has-background-forest-green {
125+
background-color: $color-brighter-forest-green !important;
126+
}
118127
}
119128
}
120129

0 commit comments

Comments
 (0)