Skip to content

Commit 4b92aad

Browse files
committed
Resume page link hover effect.
1 parent 01ac40f commit 4b92aad

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

assets/css/_colors/dark-typography.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
/* Home page */
4646
--post-list-text-color: rgb(175, 176, 177);
4747
--btn-patinator-text-color: var(--text-color);
48+
--btn-paginator-hover-color: rgb(64, 65, 66);
4849
--btn-active-bg: rgba(28, 52, 94, 1);
4950
--btn-active-border-color: rgb(66, 94, 138);
5051
--btn-text-color: var(--text-color);

assets/css/_colors/light-typography.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,14 @@
6363

6464
--input-focus-border-color: var(--btn-border-color);
6565

66-
/* Home */
66+
/* Home page */
6767

6868
--post-list-text-color: dimgray;
6969

7070
--btn-patinator-text-color: #555555;
7171

72+
--btn-paginator-hover-color: #e9ecef;
73+
7274
--btn-active-bg: #2a408e;
7375

7476
--btn-active-border-color: #007bff;

assets/css/home.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
border: 1px solid var(--btn-paginator-border-color);
7777
font-family: 'Lato', sans-serif;
7878
background-color: var(--button-bg);
79+
&:hover {
80+
background-color: var(--btn-paginator-hover-color)
81+
}
7982
}
8083
&.active {
8184
.page-link {

0 commit comments

Comments
 (0)