Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve: make learn more help link consistent #3336

Merged
merged 1 commit into from
Sep 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions ui/pages/providers/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,20 +287,18 @@ export default function ProvidersAddDetails() {

{kind === 'google' && (
<div className='space-y-1'>
<div className='py-6'>
<div className='mb-1 flex items-center space-x-2 text-xs'>
<h3 className='text-base font-medium leading-6 text-gray-900'>
Optional information for Google Groups
</h3>
<div className='mt-1 flex flex-row items-center space-x-1 text-sm text-gray-500'>
<a
className='underline hover:text-gray-600'
target='_blank'
href='https://infrahq.com/docs/identity-providers/google#groups'
rel='noreferrer'
>
learn more
</a>
</div>
<a
className='text-gray-500 underline hover:text-gray-600'
target='_blank'
href='https://infrahq.com/docs/identity-providers/google#groups'
rel='noreferrer'
>
learn more
</a>
</div>
<div className='mt-6 grid grid-cols-1 gap-y-6 gap-x-4 sm:grid-cols-6'>
<div className='sm:col-span-6 lg:col-span-5'>
Expand Down