Add variables for timing
This commit is contained in:
parent
3417eab46e
commit
efcd2ea47c
4 changed files with 10 additions and 3 deletions
|
|
@ -69,7 +69,7 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: all 0.18s ease-in-out;
|
transition: $duration-zoom all ease-in-out;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
-webkit-user-select: none; /* Safari */
|
-webkit-user-select: none; /* Safari */
|
||||||
|
|
@ -86,6 +86,7 @@
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
|
transition: $duration-color-fade fill ease-in-out;
|
||||||
fill: var(--icon-secondary);
|
fill: var(--icon-secondary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: all 0.18s ease-in-out;
|
transition: $duration-zoom all ease-in-out;
|
||||||
|
|
||||||
&:hover .icon svg {
|
&:hover .icon svg {
|
||||||
fill: var(--icon-secondary-hover);
|
fill: var(--icon-secondary-hover);
|
||||||
|
|
@ -55,6 +55,7 @@
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
|
transition: $duration-color-fade fill ease-in-out;
|
||||||
fill: var(--icon-secondary);
|
fill: var(--icon-secondary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
margin-bottom: calc($unit / 4);
|
margin-bottom: calc($unit / 4);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
transition: all 0.18s ease-in-out;
|
transition: $duration-zoom all ease-in-out;
|
||||||
|
|
||||||
&:hover .icon svg {
|
&:hover .icon svg {
|
||||||
fill: var(--icon-secondary-hover);
|
fill: var(--icon-secondary-hover);
|
||||||
|
|
@ -169,6 +169,7 @@
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
|
transition: $duration-color-fade fill ease-in-out;
|
||||||
fill: var(--icon-secondary);
|
fill: var(--icon-secondary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -307,3 +307,7 @@ $item-corner: $unit-half;
|
||||||
// Shadows
|
// Shadows
|
||||||
$hover-stroke: 1px solid rgba(0, 0, 0, 0.1);
|
$hover-stroke: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
$hover-shadow: rgba(0, 0, 0, 0.08) 0px 0px 14px;
|
$hover-shadow: rgba(0, 0, 0, 0.08) 0px 0px 14px;
|
||||||
|
|
||||||
|
// Durations
|
||||||
|
$duration-color-fade: 0.24s;
|
||||||
|
$duration-zoom: 0.18s;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue