remove right aside and text width limit from drizzle docs
drizzle docs wide by alije123
Details
Authoralije123
LicenseNo License
Categorydrizzle
Created
Updated
Size553 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 drizzle docs wide
@version 20240909.23.29
@namespace https://userstyles.world/user/alije123
@description remove right aside and text width limit from drizzle docs
@author alije123
@license No License
==/UserStyle== */
@-moz-document domain("orm.drizzle.team") {
body[class~="banner-shown"] .documentation-container {
height: 100%;
}
.documentation-container,
.documentation-content {
max-width: 100%;
}
.right-aside-container {
display: none;
}
.documentation-content-wrap {
display: block;
}
}