Skip to content

Commit 538e096

Browse files
committed
fix: added missing pesticide configuration variables
1 parent d405587 commit 538e096

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/web-component/src/scss/styles.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,24 @@
1111
// Email: mina@mina.codes
1212
// Date: 10/25/15
1313
// ==========================================================================
14+
1415
// CSS Debugging
1516
//
1617
// Toggle layout debugging with CSS Pesticide.
1718
//
1819
// $pesticide-debug-outline - {boolean} adds outlines to all elements.
1920
// $pesticide-debug-depth - {boolean} adds shadows to all elements.
2021
// @source - http://pesticide.io/
21-
$pesticide-debug-outline: false;
22-
$pesticide-debug-depth: false;
22+
@use "libs/pesticide" with (
23+
$pesticide-debug-outline: false,
24+
$pesticide-debug-depth: false
25+
);
26+
2327
// ==========================================================================
2428
// $Libs
2529
// ==========================================================================
2630
@use "libs/index";
31+
2732
// ==========================================================================
2833
// $Utilities
2934
// ==========================================================================

0 commit comments

Comments
 (0)