Skip to content

Commit

Permalink
tweak linkinput
Browse files Browse the repository at this point in the history
  • Loading branch information
goranalkovic-infinum committed Jul 26, 2024
1 parent 99d5129 commit c563814
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/components/link-input/link-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,10 @@ export const LinkInput = (props) => {
aria-label={__('URL suggestions', 'eightshift-ui-components')}
className={({ isEntering, isExiting }) =>
clsx(
'es-uic-rounded-md es-uic-border es-uic-border-gray-200 es-uic-bg-white es-uic-shadow-lg es-uic-outline-none empty:es-uic-opacity-0',
'es-uic-rounded-md es-uic-border es-uic-border-gray-200 es-uic-bg-white es-uic-shadow-lg es-uic-outline-none',
isEntering && 'es-uic-outline es-uic-animate-in es-uic-fade-in-0 es-uic-slide-in-from-top-2 es-uic-fill-mode-forwards',
isExiting && 'es-uic-outline es-uic-animate-out es-uic-fade-out-0 es-uic-slide-out-to-top-2 es-uic-fill-mode-forwards',
!shouldShowSuggestions && suggestionList.items.length < 1 && 'es-uic-invisible',
)
}
style={{
Expand Down

0 comments on commit c563814

Please sign in to comment.