Skip to content

Commit

Permalink
update styles for access token button
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanov Anton committed Jul 12, 2024
1 parent 7b9f59f commit 8ba868d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/javascript/components/Company/Company.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const Company = ({
<a
href={edit_links.access_token}
onClick={(event) => event.stopPropagation()}
className={`mr-2 ${edit_links.need_access_token ? 'p-0.5 bg-orange-300 rounded-lg text-white' : ''}`}
className={`mr-2 ${edit_links.need_access_token ? 'p-0.5 bg-orange-300 border border-orange-400 rounded-lg text-white' : ''}`}
>
<Key />
</a>
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/components/Repository/Repository.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export const Repository = ({
<a
href={edit_links.access_token}
onClick={(event) => event.stopPropagation()}
className={`mr-2 ${access_token_status === 'empty' && edit_links ? 'p-0.5 bg-orange-300 rounded-lg text-white' : ''}`}
className={`mr-2 ${access_token_status === 'empty' && edit_links ? 'p-0.5 bg-orange-300 border border-orange-400 rounded-lg text-white' : ''}`}
>
<Key />
</a>
Expand Down

0 comments on commit 8ba868d

Please sign in to comment.