Align icons

This commit is contained in:
Saoud Rizwan
2024-08-28 06:16:09 -04:00
parent af46531e52
commit 5f8d3d5511
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
"name": "claude-dev", "name": "claude-dev",
"displayName": "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.", "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", "icon": "icon.png",
"engines": { "engines": {
"vscode": "^1.84.0" "vscode": "^1.84.0"

View File

@@ -648,7 +648,7 @@ const ChatView = ({
style={{ style={{
position: "absolute", position: "absolute",
right: 20, 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", display: "flex",
alignItems: "flex-end", alignItems: "flex-end",
height: "calc(100% - 20px)", // Full height minus top and bottom padding height: "calc(100% - 20px)", // Full height minus top and bottom padding
@@ -661,14 +661,14 @@ const ChatView = ({
style={{ marginRight: "2px" }}> style={{ marginRight: "2px" }}>
<span <span
className="codicon codicon-device-camera" 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>
<VSCodeButton <VSCodeButton
disabled={textAreaDisabled} disabled={textAreaDisabled}
appearance="icon" appearance="icon"
aria-label="Send Message" aria-label="Send Message"
onClick={handleSendMessage}> 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> </VSCodeButton>
</div> </div>
</div> </div>