New in February 2026 — See what's new
DazlDocs
Feature Reference

Inspect

The Inspect panel opens on the right side of the editor and shows detailed information about the currently selected element. It has two tabs: Style and Props.

The Inspect panel opens on the right side of the editor and shows detailed information about the currently selected element. It has two tabs: Style and Props.

The Inspect panel showing the Style tab with CSS rules grouped by source file

Style Tab

Shows every CSS rule affecting the selected element, ordered from most specific to least specific. Rules are grouped by source file:

  • Project stylesheets – your component and page styles (e.g., home-hero-block.module.css, home.module.css)
  • Theme files – design tokens defined in theme.css, colors.css, typography.css, spacings.css, decorations.css, animations.css
  • Reset and base stylesreset.css, global.css
  • User agent stylesheet – browser default rules (read-only)

Click any value to edit it inline. Changes are written directly to the source file.

The Style tab also shows inherited styles from parent elements (e.g., "Inherited from body", "Inherited from html.light-theme"), so you can trace where a style originates.

Props Tab

Shows React component props for the selected element:

  • Prop name and current value
  • Inline values (strings, numbers, objects, arrays) can be edited directly in the text input
  • Bound expressions (e.g., {styles.homeheroblock}) show the expression and possibly the runtime value, but should be changed through the AI chat instead

The Props tab showing component properties

Opening the Inspect Panel

Click the Inspect button in the top-right area of the top bar. Select an element in Edit mode to see its details.

The Inspect button in the top-right area of the top bar, next to Publish

On this page