-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6620f3d
commit 45a8ee9
Showing
9 changed files
with
254 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
client/src/components/shared/NavigationArrows/NavigationArrows.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.root { | ||
display: flex; | ||
align-items: center; | ||
|
||
.arrow { | ||
cursor: pointer; | ||
width: 3.2rem; | ||
height: 3.2rem; | ||
background: $color-octant-grey6; | ||
border-radius: $border-radius-10; | ||
transition: all $transition-time-5; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
svg path { | ||
fill: $color-octant-grey5; | ||
} | ||
|
||
&.leftArrow { | ||
svg { | ||
transform: rotate(180deg); | ||
} | ||
} | ||
|
||
&.isDisabled { | ||
background: $color-octant-grey6; | ||
|
||
svg path { | ||
fill: $color-octant-grey1; | ||
} | ||
} | ||
|
||
&:not(.isDisabled):hover { | ||
background: $color-octant-grey8; | ||
|
||
svg path { | ||
fill: $color-octant-dark; | ||
} | ||
} | ||
|
||
&:not(.isDisabled):active { | ||
background: $color-octant-grey1; | ||
|
||
svg path { | ||
fill: $color-octant-dark; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.