Add hover effect on SurahIndex.tsx
This commit is contained in:
parent
f391449789
commit
e358b65736
3 changed files with 10 additions and 0 deletions
|
@ -16,6 +16,7 @@ body .root .content.theme {
|
||||||
ul.body.index {
|
ul.body.index {
|
||||||
li.surah a {
|
li.surah a {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
min-height: 45px;
|
min-height: 45px;
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,10 @@
|
||||||
color: $blue1;
|
color: $blue1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: lighten($blue1, 38%);
|
||||||
|
}
|
||||||
|
|
||||||
div:first-child {
|
div:first-child {
|
||||||
.id {
|
.id {
|
||||||
color: $gold1;
|
color: $gold1;
|
||||||
|
|
|
@ -5,6 +5,11 @@
|
||||||
&:active, &:link, &:visited {
|
&:active, &:link, &:visited {
|
||||||
color: $green1;
|
color: $green1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $green1;
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a {
|
footer a {
|
||||||
|
|
Loading…
Reference in a new issue