Skip to content

Commit

Permalink
[fix] #230
Browse files Browse the repository at this point in the history
  • Loading branch information
VecHK committed Jul 20, 2023
1 parent 7e85ce7 commit 4593f16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions src/components/FloorFilter/components/PointAndText.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
inset 0 -1px 0.5px 0.5px hsl(240deg 8% 35% / 50%),
inset 0 2px 3px 0px rgba(255, 255, 255, 0.382)
;
box-shadow:
0 4px 4px -2px rgba(0, 0, 0, 0.5),
inset 0 0px 0px 1px hsla(240deg, 8%, 35%, 0.5),
inset 0 -1px 0.5px 0.5px hsla(240deg, 8%, 35%, 0.5),
inset 0 2px 3px 0px rgba(255, 255, 255, 0.382)
;
}

.FloorFilter.isDragging .FloorPoint {
Expand All @@ -82,8 +88,8 @@
.FloorPoint:before {
content: " ";
display: block;
width: calc(var(--point-size) - (3px * 2 + 1px));
height: calc(var(--point-size) - (3px * 2 + 1px));
width: calc(var(--point-size) - 8px);
height: calc(var(--point-size) - 8px);
border-radius: var(--point-size);
}
.FloorPointWrap {
Expand Down
2 changes: 1 addition & 1 deletion src/components/FloorFilter/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

--text-height: 14px;
--text-width: 64px;
--point-size: 12px;
--point-size: 14px;
--ex-height: 0px;

--track-height: 5px;
Expand Down

0 comments on commit 4593f16

Please sign in to comment.