diff --git a/packages/frontend/core/src/components/affine/setting-modal/account-setting/style.css.ts b/packages/frontend/core/src/components/affine/setting-modal/account-setting/style.css.ts
index e560fdf67d..87648a1dc2 100644
--- a/packages/frontend/core/src/components/affine/setting-modal/account-setting/style.css.ts
+++ b/packages/frontend/core/src/components/affine/setting-modal/account-setting/style.css.ts
@@ -43,8 +43,3 @@ globalStyle(`${avatarWrapper} .camera-icon-wrapper`, {
export const button = style({
padding: '4px 12px',
});
-
-export const userNameInput = style({
- height: '32px',
- width: '280px',
-});
diff --git a/packages/plugins/copilot/src/UI/debug-content.tsx b/packages/plugins/copilot/src/UI/debug-content.tsx
index 849288a2e0..5ccea36fb8 100644
--- a/packages/plugins/copilot/src/UI/debug-content.tsx
+++ b/packages/plugins/copilot/src/UI/debug-content.tsx
@@ -5,7 +5,6 @@ import { type ReactElement, useCallback } from 'react';
import { openAIApiKeyAtom } from '../core/hooks';
import { conversationHistoryDBName } from '../core/langchain/message-history';
-import * as styles from './index.css';
export const DebugContent = (): ReactElement => {
const [key, setKey] = useAtom(openAIApiKeyAtom);
@@ -13,7 +12,7 @@ export const DebugContent = (): ReactElement => {
{
diff --git a/packages/plugins/copilot/src/UI/index.css.ts b/packages/plugins/copilot/src/UI/index.css.ts
index 3b2bc775a9..5299348700 100644
--- a/packages/plugins/copilot/src/UI/index.css.ts
+++ b/packages/plugins/copilot/src/UI/index.css.ts
@@ -41,7 +41,3 @@ export const sendButtonStyle = style({
backgroundColor: 'transparent',
},
});
-
-export const debugContentInput = style({
- width: '280px',
-});