Skip to content

Commit

Permalink
Merge pull request #149 from treadpit/develop
Browse files Browse the repository at this point in the history
fix todo's marker style error
  • Loading branch information
todrfu authored Aug 2, 2019
2 parents 8baf138 + 9537f90 commit 6c71405
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/component/calendar/index.wxss
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,23 @@
border-radius: 50%;
background-color: #cc5226;
position: absolute;
left: 50%;
transform: translateX(-50%);
}

.todo-text {
width: 150%;
font-size: 22rpx;
color: #c2c2c2;
position: absolute;
left: 50%;
transform: translateX(-50%);
overflow: hidden;
word-break: break-all;
text-overflow: ellipsis;
white-space: nowrap;
line-clamp: 1;
text-align: center;
}

.todo-dot-top {
Expand Down

0 comments on commit 6c71405

Please sign in to comment.