Browse Source

Align icons

Saoud Rizwan 1 năm trước cách đây
mục cha
commit
5f8d3d5511
2 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 1 1
      package.json
  2. 3 3
      webview-ui/src/components/ChatView.tsx

+ 1 - 1
package.json

@@ -2,7 +2,7 @@
   "name": "claude-dev",
   "displayName": "Claude Dev",
   "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
-  "version": "1.4.16",
+  "version": "1.4.17",
   "icon": "icon.png",
   "engines": {
     "vscode": "^1.84.0"

+ 3 - 3
webview-ui/src/components/ChatView.tsx

@@ -648,7 +648,7 @@ const ChatView = ({
 					style={{
 						position: "absolute",
 						right: 20,
-						bottom: 14.5, // Align with the bottom padding of the container
+						bottom: 14, // Align with the bottom padding of the container
 						display: "flex",
 						alignItems: "flex-end",
 						height: "calc(100% - 20px)", // Full height minus top and bottom padding
@@ -661,14 +661,14 @@ const ChatView = ({
 						style={{ marginRight: "2px" }}>
 						<span
 							className="codicon codicon-device-camera"
-							style={{ fontSize: 18.5, marginLeft: -2, marginBottom: 0.5 }}></span>
+							style={{ fontSize: 18.5, marginLeft: -2, marginBottom: 1 }}></span>
 					</VSCodeButton>
 					<VSCodeButton
 						disabled={textAreaDisabled}
 						appearance="icon"
 						aria-label="Send Message"
 						onClick={handleSendMessage}>
-						<span className="codicon codicon-send" style={{ fontSize: 16.5, marginTop: 2 }}></span>
+						<span className="codicon codicon-send" style={{ fontSize: 16, marginTop: 2.5 }}></span>
 					</VSCodeButton>
 				</div>
 			</div>