Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Nov 29, 2024
1 parent 3adec4e commit bdee765
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/data/components/progress/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
width: 100%;
height: 4px;
border-radius: 9999px;
background-color: var(--color-gray-400);
background-color: var(--color-gray-400, oklch(12% 8% 264 / 38%));
display: flex;
overflow: hidden;
}

.indicator {
background-color: var(--code-6);
background-color: var(--code-6, #00749e);
border-radius: inherit;
}

Expand All @@ -31,7 +31,7 @@
.label {
cursor: unset;
font-weight: bold;
color: var(--color-gray-700);
color: var(--color-gray-700, oklch(12% 6% 264 / 77%));
}

@keyframes indeterminateProgress {
Expand Down
2 changes: 1 addition & 1 deletion docs/data/components/radio-group/radio-group.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Place the component inside an HTML element or component with the HTML `dir="rtl"
```jsx
<html dir="rtl">
<body>
<RadioGroup.Root /> {/* RTL keyboard behavior*/}
<RadioGroup.Root /> {/* RTL keyboard behavior */}
</body>
</html>
```
2 changes: 1 addition & 1 deletion docs/data/components/tabs/tabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Place horizontal tabs inside an HTML element or component with the HTML `dir="rt
```jsx
<html dir="rtl">
<body>
<Tabs.Root orientation="horizontal" /> {/* RTL keyboard behavior*/}
<Tabs.Root orientation="horizontal" /> {/* RTL keyboard behavior */}
</body>
</html>
```
Expand Down

0 comments on commit bdee765

Please sign in to comment.