Enhances the text display in the chatbot element on LMArena to reduce artifacts and improve readability.
Chatbot Text Enhancement for LMArena by Dragoy

Details
AuthorDragoy
LicenseNo License
Categorylmarena
Created
Updated
Size882 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
- This userstyle improves the readability of the chatbot text on LMArena.
- Moves the "Direct Chat" button to the first position in the tab navigation list.
- Hides a specific informational block to reduce clutter.
- Compatible with the latest version of LMArena.
- Please raise issues or suggestions in the GitHub repository.
Source code
/* ==UserStyle==
@name Chatbot Text Enhancement
@namespace Custom Styles
@author Dragoy
@description Enhances the text display in the chatbot element to reduce artifacts and improve readability.
@version 1.0
@license No License
@preprocessor uso
==/UserStyle== */
@-moz-document domain('lmarena.ai') {
#chatbot {
height: 1180px;
border-style: solid;
overflow: hidden;
min-width: min(160px, 100%);
border-width: var(--block-border-width);
}
.tab-nav.scroll-hide.svelte-1uw5tnk {
display: flex;
flex-direction: row;
}
.tab-nav.scroll-hide.svelte-1uw5tnk button {
order: 1;
}
.tab-nav.scroll-hide.svelte-1uw5tnk button#component-138-button {
order: 0;
}
.svelte-1ed2p3z {
display: none !important;
}
}