Skip to content

Commit

Permalink
Extending the ruler lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Braverman committed Apr 15, 2024
1 parent 659f6a0 commit ecca0a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/math/numbersLine/src/components/ruler/Numbers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ const Numbers = () => {
{labels.map((label) =>
rulerType != LineRange.hundredCircular || label % 10 == 0 ? (
<div key={label} className="flex flex-col items-center">
<div className="h-4 border-l-4 border-gray-900 w-1366" />
<div className="h-6 border-l-4 border-gray-900 w-1366" />
<div
className={`pl-2 pr-2 select-none text-2xl absolute m-5 ${label % 5 == 0 && " font-bold"} ${
className={`pl-2 pr-2 select-none text-2xl absolute m-6 ${label % 5 == 0 && " font-bold"} ${
(coverSituation == TypeCover.partiallyCover || coverSituation == TypeCover.partiallyDiscover) && " cursor-pointer"
} ${labelsCover.has(label) && " text-[transparent]"}`}
onClick={() => displayLabel(label)}
Expand Down

0 comments on commit ecca0a6

Please sign in to comment.