Because it seems that UI design is the hardest thing for Google. Here's some improvement to their awful UI.
Gemini UI fix by jamir-boop
Details
Authorjamir-boop
LicenseMIT
Categoryhttps://gemini.google.com/app/*
Created
Updated
Size584 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Gemini UI fix
@namespace github.com/openstyles/stylus
@description UI fix for Gemini
@author Jamir-boop
@version 0.0.1
@license MIT
@preprocessor stylus
//@var text maxWidth "80vw" "80vw"
@var range maxWidth 'Chat width' [80, 20, 100, "%"]
==/UserStyle== */
:root {
--max-width: maxWidth;
}
@-moz-document url-prefix("https://gemini.google.com/app/") {
.ui-v2-enabled[_ngcontent-ng-c3052759784] .conversation-container[_ngcontent-ng-c3052759784]{
max-width: var(--max-width);
}
}