From 660c274d4411d61ba66ac949200fe093f3f44c7d Mon Sep 17 00:00:00 2001 From: myunggyuns Date: Tue, 13 Feb 2024 22:00:44 +0900 Subject: [PATCH] fix: remove code about font css --- src/core/modes/walk-mode.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/core/modes/walk-mode.ts b/src/core/modes/walk-mode.ts index cb70a31..6a805ee 100644 --- a/src/core/modes/walk-mode.ts +++ b/src/core/modes/walk-mode.ts @@ -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', @@ -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, @@ -168,7 +164,6 @@ export class WalkMode implements Mode { contentText: '', backgroundColor: `${timerColor}`, width: `${timerWidth}em`, - color: 'white', height: '8px', margin: '0.25em 0 0 0', textDecoration: `none; ${objectToCssString({ @@ -176,12 +171,8 @@ export class WalkMode implements Mode { 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,