Make the Dashboard sidebar wider to see long album names.
saint.to/dashboard - wider sidebar by WyohKnott
Details
AuthorWyohKnott
LicenseNo License
Categorysaint.to
Created
Updated
Size561 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 saint.to/dashboard - wider sidebar
@version 20231202.01.04
@namespace userstyles.world/user/WyohKnott
@description Make the Dashboard sidebar wider to see long album names.
@author WyohKnott
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://saint.to/dashboard") {
:root {
--sidebarwidth: 450px;
}
.ui__sidebar {
width: var(--sidebarwidth);
max-width: var(--sidebarwidth);
}
.ui__main {
width: calc(100% - var(--sidebarwidth));
}
.file-list td {
max-width: unset;
}
}