Skip to content

Commit

Permalink
chore(client): adjust style
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-cavazzi committed Feb 23, 2023
1 parent 68cd9bc commit 680456a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/utils/components/entities/Buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function SessionButton({
connectButton : sessionStatus === "failed" || sessionStatus === "stopping" ? stopButton : null;
const logsButton = (
<DropdownItem onClick={(e: React.MouseEvent<HTMLElement>) => setServerLogs(notebook.name)}>
<FontAwesomeIcon className="text-rk-green" icon={faFileAlt} /> Get logs
<FontAwesomeIcon className="text-rk-green fa-w-14" icon={faFileAlt} /> Get logs
</DropdownItem>
);

Expand Down
2 changes: 1 addition & 1 deletion client/src/utils/components/ssh/ssh.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function SshDropdown({ fullPath, gitUrl }: SshDropdownProps) {

return (
<DropdownItem onClick={(e: React.MouseEvent<HTMLElement>) => handleClick(e)}>
<img src={rkIconSsh} className="rk-icon rk-icon-md btn-with-menu-margin" /> Start SSH session
<img src={rkIconSsh} className="rk-icon rk-icon-md btn-with-menu-margin" />Start SSH session
</DropdownItem>
);
}
Expand Down

0 comments on commit 680456a

Please sign in to comment.