mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Fix positioning of textfield icons
This commit is contained in:
@@ -603,7 +603,7 @@ const ChatView = ({
|
|||||||
style={{
|
style={{
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
right: 20,
|
right: 20,
|
||||||
bottom: 14, // Align with the bottom padding of the container
|
bottom: 15, // 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
|
||||||
@@ -614,16 +614,14 @@ const ChatView = ({
|
|||||||
aria-label="Attach Images"
|
aria-label="Attach Images"
|
||||||
onClick={selectImages}
|
onClick={selectImages}
|
||||||
style={{ marginRight: "4px" }}>
|
style={{ marginRight: "4px" }}>
|
||||||
<span
|
<span className="codicon codicon-device-camera" style={{ fontSize: 18, marginLeft: -2 }}></span>
|
||||||
className="codicon codicon-device-camera"
|
|
||||||
style={{ fontSize: 18.5, marginLeft: -2, marginBottom: 1.5 }}></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"></span>
|
<span className="codicon codicon-send" style={{ fontSize: 15.5, marginBottom: -1 }}></span>
|
||||||
</VSCodeButton>
|
</VSCodeButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user