Skip to content

Commit

Permalink
fix: forced styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Joey Clover committed Nov 22, 2023
1 parent 50fe14d commit 57fe333
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/docusaurus-plugin-debug/src/theme/DebugJsonView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ import type {Props} from '@theme/DebugJsonView';
import styles from './styles.module.css';

const paraisoStyles = {
container: styles.containerParaiso,
basicChildStyle: styles.basicElementParaiso,
label: styles.labelParaiso,
nullValue: styles.nullValueParaiso,
undefinedValue: styles.undefinedValueParaiso,
stringValue: styles.stringValueParaiso,
booleanValue: styles.booleanValueParaiso,
numberValue: styles.numberValueParaiso,
otherValue: styles.otherValueParaiso,
punctuation: styles.punctuationParaiso,
collapseIcon: styles.collapseIconParaiso,
expandIcon: styles.expandIconParaiso,
collapsedContent: styles.collapseContentParaiso,
container: styles.containerParaiso!,
basicChildStyle: styles.basicElementParaiso!,
label: styles.labelParaiso!,
nullValue: styles.nullValueParaiso!,
undefinedValue: styles.undefinedValueParaiso!,
stringValue: styles.stringValueParaiso!,
booleanValue: styles.booleanValueParaiso!,
numberValue: styles.numberValueParaiso!,
otherValue: styles.otherValueParaiso!,
punctuation: styles.punctuationParaiso!,
collapseIcon: styles.collapseIconParaiso!,
expandIcon: styles.expandIconParaiso!,
collapsedContent: styles.collapseContentParaiso!,
};

export default function DebugJsonView({
Expand Down

0 comments on commit 57fe333

Please sign in to comment.