0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Gemini のブラウザでの表示幅を拡大するカスタム CSS

0
Last updated at Posted at 2026-04-11

たぶん、誰かがどこかで作ってると思いますが、参考までに公開しておきます。

@-moz-document domain("gemini.google.com") {
    /* メッセージエリア、入力欄の最大幅を拡張 */
    .conversation-container {
        max-width: 80% !important; /* 好みに応じて調整してください */
    }
    user-query {
        max-width: 95% !important; /* 好みに応じて調整してください */
    }
    .input-area-container {
        max-width: 75%  !important; /* 好みに応じて調整してください */
    }
    [class*="user-query"] {
        max-width: 100% !important; /* 好みに応じて調整してください */
    }
}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?