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

スマホで見た時に自動xxボタンが見えるように修正 #493

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/web/src/pages/EditorialPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const EditorialPage: React.FC = () => {
</div>
<div className="col-span-12 col-start-1 mx-2 lg:col-span-10 lg:col-start-2 xl:col-span-10 xl:col-start-2">
<Card label="校正したい文章">
<div className="mb-2 flex w-full items-center justify-between">
<div className="mb-2 flex w-full flex-col justify-between sm:flex-row">
<Select
value={modelId}
onChange={setModelId}
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/pages/TranslatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const TranslatePage: React.FC = () => {
</div>
<div className="col-span-12 col-start-1 mx-2 lg:col-span-10 lg:col-start-2 xl:col-span-10 xl:col-start-2">
<Card label="翻訳したい文章">
<div className="flex w-full items-center justify-between">
<div className="flex w-full flex-col justify-between sm:flex-row">
<Select
value={modelId}
onChange={setModelId}
Expand Down
Loading