mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
12 lines
214 B
Text
12 lines
214 B
Text
/* Backward */
|
|
.backward() {
|
|
.hacks();
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, transform);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
.prefixed(transform, translateX(-8px));
|
|
}
|
|
}
|