This file contains hidden or 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
.card .icon { | |
visibility: hidden; | |
opacity: 0; | |
transform: translate(0, 20px); | |
transition: all 0.5s ease-out 0s, visibility 0s 0.5s; | |
} | |
.card:hover .icon { | |
visibility: visible; | |
opacity: 1; | |
transform: translate(0,0); |
This file contains hidden or 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
/** | |
* Fix pagination on archive pages. | |
* Change 'news' (in both places) to the archive that is having the redirect problem. | |
*/ | |
function wss_pagination_rewrite() { | |
add_rewrite_rule( 'news/page/?([0-9]{1,})/?$', 'index.php?category_name=news&paged=$matches[1]', 'top' ); | |
} | |
add_action( 'init', 'wss_pagination_rewrite' ); |
This file contains hidden or 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
{ | |
// Your current package.json contents | |
"resolutions": { | |
"graceful-fs": "4.2.3" | |
} | |
} |