Skip to content

Commit

Permalink
fix: adjusted styles from design review
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaHungDinh committed Dec 19, 2024
1 parent c77e9d7 commit e327d58
Showing 1 changed file with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.dateRangeFilter {
padding: 1rem;
padding: var(--givewp-spacing-2);
display: flex;
flex-direction: row;
justify-content: flex-end;
gap: 1rem;
margin-bottom: var(--givewp-spacing-2);
background-color: var(--givewp-neutral-50);
border-radius: var(--givewp-rounded-8);
Expand All @@ -18,10 +17,26 @@
line-height: 1.43;
border: 0;
cursor: pointer;

&:hover {
background-color: var(--givewp-neutral-100);
}

&:first-child {
border-radius: var(--givewp-rounded-4) 0 0 var(--givewp-rounded-4);
}

&:last-child {
border-radius: 0 var(--givewp-rounded-4) var(--givewp-rounded-4) 0;
}
}

.dateRangeFilter .selectedDateRange {
background-color: var(--givewp-shades-white);

&:hover {
background-color: var(--givewp-shades-white);
}
}

.statWidget {
Expand Down

0 comments on commit e327d58

Please sign in to comment.