Skip to content

Commit fe7c686

Browse files
committed
style: align items
1 parent 64d9a5b commit fe7c686

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/components/ConversationItem/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export function ConversationItem({ type, content, session, done, port }) {
6161
href={'https://chat.openai.com/chat/' + session.conversationId}
6262
target="_blank"
6363
rel="nofollow noopener noreferrer"
64+
className="gpt-util-icon"
6465
style="color: inherit;"
6566
>
6667
<LinkExternalIcon size={14} />

src/components/FeedbackForChatGPTWeb/index.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ const FeedbackForChatGPTWeb = (props) => {
4242
<div title="Feedback" className="gpt-feedback">
4343
<span
4444
onClick={clickThumbsUp}
45-
className={action === 'thumbsUp' ? 'gpt-feedback-selected' : undefined}
45+
className={action === 'thumbsUp' ? 'gpt-feedback-selected gpt-util-icon' : 'gpt-util-icon'}
4646
>
4747
<ThumbsupIcon size={14} />
4848
</span>
4949
<span
5050
onClick={clickThumbsDown}
51-
className={action === 'thumbsDown' ? 'gpt-feedback-selected' : undefined}
51+
className={
52+
action === 'thumbsDown' ? 'gpt-feedback-selected gpt-util-icon' : 'gpt-util-icon'
53+
}
5254
>
5355
<ThumbsdownIcon size={14} />
5456
</span>

src/content-script/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@
163163
.gpt-feedback {
164164
display: flex;
165165
gap: 6px;
166-
cursor: pointer;
167166
}
168167

169168
.gpt-feedback-selected {

0 commit comments

Comments
 (0)