Skip to content

Commit

Permalink
fix: remove code about font css
Browse files Browse the repository at this point in the history
  • Loading branch information
myunggyuns committed Feb 13, 2024
1 parent fe9c666 commit 660c274
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/core/modes/walk-mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ export class WalkMode implements Mode {
after: {
contentText: ``,
margin: '0.5em 0 0 0',
color: '#FFFFFF',
textDecoration: `none; ${objectToCssString({
width: '50px',
height: '50px',
Expand All @@ -113,11 +112,8 @@ export class WalkMode implements Mode {
position: 'absolute',
right: '5vw',
...junbaeLocation,
'font-family': 'monospace',
'font-weight': '900',
'z-index': 1,
'pointer-events': 'none',
'text-align': 'center',
})}`,
},
rangeBehavior: vscode.DecorationRangeBehavior.ClosedClosed,
Expand Down Expand Up @@ -168,20 +164,15 @@ export class WalkMode implements Mode {
contentText: '',
backgroundColor: `${timerColor}`,
width: `${timerWidth}em`,
color: 'white',
height: '8px',
margin: '0.25em 0 0 0',
textDecoration: `none; ${objectToCssString({
'box-shadow': `0px 0px 15px ${timerShadowColor}`,
position: 'absolute',
right: '5vw',
...timerLocation,
'font-size': '40px',
'font-family': 'monospace',
'font-weight': '900',
'z-index': 1,
'pointer-events': 'none',
'text-align': 'center',
})}`,
},
rangeBehavior: vscode.DecorationRangeBehavior.ClosedClosed,
Expand Down

0 comments on commit 660c274

Please sign in to comment.