-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add jetpack subscribe form styling
Signed-off-by: Souptik Datta <souptikdatta2001@gmail.com>
- Loading branch information
1 parent
32b0fa3
commit b3c48d3
Showing
4 changed files
with
31 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.wp-block-jetpack-subscriptions { | ||
border: none; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* Assets functions. | ||
* | ||
* @package souptik | ||
*/ | ||
|
||
namespace Souptik\Theme\Assets; | ||
|
||
/** | ||
* Setup. | ||
* | ||
* @return void | ||
*/ | ||
function setup(): void { | ||
// Fire hooks to bootstrap theme assets. | ||
add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\\enqueue_styles' ); | ||
} | ||
|
||
/** | ||
* Enqueue styles. | ||
*/ | ||
function enqueue_styles() { | ||
wp_enqueue_style( 'overrides', get_stylesheet_uri() . '/assets/css/overrides.css', [], filemtime( get_stylesheet_directory() . '/assets/css/overrides.css' ) ); | ||
} |
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