Skip to content

Commit

Permalink
fix(opentrons-ai-client): fix the vertical position of caret (#15173)
Browse files Browse the repository at this point in the history
* fix(opentrons-ai-client): fix the vertical position of caret
  • Loading branch information
koji authored May 14, 2024
1 parent 1f897cd commit eefa07f
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions opentrons-ai-client/README.md
Original file line number Diff line number Diff line change
@@ -26,6 +26,7 @@ The UI stack is built using:
- [React][]
- [Babel][]
- [Vite][]
- [Jotai][]

Some important directories:

@@ -59,5 +60,6 @@ TBD
[react]: https://react.dev/
[babel]: https://babeljs.io/
[vite]: https://vitejs.dev/
[jotai]: https://jotai.org/
[bundle-analyzer]: https://github.com/webpack-contrib/webpack-bundle-analyzer
[opentrons-ai-server]: https://github.com/Opentrons/opentrons/tree/edge/opentrons-ai-server
2 changes: 1 addition & 1 deletion opentrons-ai-client/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import { I18nextProvider } from 'react-i18next'
import { GlobalStyle } from './atoms/GlobalStyle'

import { GlobalStyle } from './atoms/GlobalStyle'
import { i18n } from './i18n'
import { App } from './App'

1 change: 1 addition & 0 deletions opentrons-ai-client/src/molecules/InputPrompt/index.tsx
Original file line number Diff line number Diff line change
@@ -149,6 +149,7 @@ const StyledTextarea = styled.textarea`
width: 100%;
font-size: ${TYPOGRAPHY.fontSize20};
line-height: ${TYPOGRAPHY.lineHeight24};
padding: 1.2rem 0;
::placeholder {
position: absolute;

0 comments on commit eefa07f

Please sign in to comment.