Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/core/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static function is_active() : bool {

public function enqueue_scripts() : void {
wp_enqueue_style(
'ea11y-global-style',
'ea11y-global-admin-style',
EA11Y_ASSETS_URL . 'css/admin.css',
[],
EA11Y_VERSION
Expand Down
2 changes: 1 addition & 1 deletion modules/widget/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function enqueue_accessibility_widget() : void {

wp_enqueue_style(
'ea11y-widget-fonts',
EA11Y_ASSETS_URL . 'build/fonts.css',
EA11Y_ASSETS_URL . 'css/fonts.css',
[],
EA11Y_VERSION
);
Expand Down
1 change: 0 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const entryPoints = {
'assets/dev/css',
'ea11y-scanner-admin.scss',
),
fonts: path.resolve(process.cwd(), 'assets/css', 'fonts.css'),
'skip-link': path.resolve(process.cwd(), 'assets/dev/css', 'skip-link.scss'),
'gutenberg-custom-link': path.resolve(
process.cwd(),
Expand Down
Loading