Skip to content

Commit

Permalink
Merge pull request #201 from rng190001/fix_issue68
Browse files Browse the repository at this point in the history
Fixed Issue #68: Tick Mark Legibility
  • Loading branch information
COChara authored Sep 20, 2023
2 parents 450be14 + b47c109 commit e69dc0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/test/components/Range.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const MultiRangeSlider = (
[...Array(10)].map((e, n) => (
<div key={n} className="ruler-sub-rule absolute"></div>
))}
<div className="text-[6px] absolute font-bold m-auto text-center text-neutral-600 flex-col">
<div className="text-[10px] absolute font-bold -ml-2 text-center text-neutral-300 flex-col w-4">
{i * step}
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/test/components/multirangeslider.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
}
.multi-range-slider .ruler .ruler-rule {
border-left: solid 1px;
border-color: #525252;
border-color: white;

display: flex;
flex-grow: 1;
Expand All @@ -128,13 +128,13 @@
}
.multi-range-slider .ruler .ruler-rule:last-child {
border-right: solid 1px;
border-color: #525252;
border-color: white;

}

.multi-range-slider .ruler .ruler-sub-rule {
border-left: solid 1px;
border-color: #525252;
border-color: white;

/* border-bottom: solid 1px; */
display: flex;
Expand Down

0 comments on commit e69dc0c

Please sign in to comment.