buttons: Add buttons.css file to app.ts bundle for production usage.

This commit adds the `button.css` file to the `app.ts` bundle, which
makes the redesigned button styles available for use in production code.
This commit is contained in:
Sayam Samal
2025-01-09 00:47:16 +05:30
committed by Tim Abbott
parent 8924161696
commit 65f33e041c
2 changed files with 4 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ import "../../third/bootstrap/css/bootstrap-btn.css";
import "../../styles/typeahead.css";
import "../../styles/app_variables.css";
import "../../styles/tooltips.css";
import "../../styles/buttons.css";
import "../../styles/components.css";
import "../../styles/app_components.css";
import "../../styles/rendered_markdown.css";

View File

@@ -18,9 +18,9 @@
"dev-buttons": [
"./src/bundles/portico.ts",
"./src/portico/design-testing.ts",
"./styles/portico/dev-buttons.css",
"./styles/app_variables.css",
"./styles/app_components.css",
"./styles/buttons.css"
"./styles/portico/dev-buttons.css",
"./styles/buttons.css",
"./styles/app_components.css"
]
}