Skip to content

Commit

Permalink
redraw: last prompt button
Browse files Browse the repository at this point in the history
  • Loading branch information
max1mde committed Nov 18, 2024
1 parent 1bb1fd5 commit f970cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/autocorrect_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ def setup_ui(self, show_suggestions):
last_prompt_btn = QPushButton("Last Prompt")
last_prompt_btn.setStyleSheet("""
QPushButton {
background-color: rgba(30, 120, 220, 0.9);
background-color: rgba(30, 40, 90, 0.9);
color: white;
border-radius: 10px;
padding: 5px 10px;
margin: 2px;
}
QPushButton:hover {
background-color: rgba(40, 140, 240, 1);
background-color: rgba(70, 80, 120, 1);
}
""")
buttons_layout_top.addWidget(last_prompt_btn)
Expand Down

0 comments on commit f970cf6

Please sign in to comment.