From 2a557fdd98075f1c935679ea5d82ce734f81c603 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Wed, 18 Jan 2023 08:53:39 +0000 Subject: [PATCH] Don't enqueue the CUBE stylesheet --- functions.php | 1 - package.json | 2 +- styles.css => style.css | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename styles.css => style.css (100%) diff --git a/functions.php b/functions.php index 2c4c674..bb13c69 100644 --- a/functions.php +++ b/functions.php @@ -4,7 +4,6 @@ add_theme_support( 'title-tag' ); function zxs_add_themes() { wp_enqueue_style('zxs_globals', get_stylesheet_directory_uri() . "/style.css", array(), wp_get_theme()->get( 'Version' ), 'all'); - wp_enqueue_style('zxs_cube', get_stylesheet_directory_uri() . "/assets/css/cube.css", array(), wp_get_theme()->get( 'Version' ), 'all'); } diff --git a/package.json b/package.json index 5d7e1ce..bea91a9 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build:css": "postcss assets/css/styles.css > styles.css" + "build:css": "postcss assets/css/styles.css > style.css" }, "repository": { "type": "git", diff --git a/styles.css b/style.css similarity index 100% rename from styles.css rename to style.css