Widens the main content column on Baraag for large screen sizes. Also expands headers on profiles.
Baraag Expanded Layout by lymalyk
Details
Authorlymalyk
LicenseMIT
Categorybaraag.net
Created
Updated
Size769 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
You can make this work on more Mastodon instances by adding the domain to the style via Stylus.
Source code
/* ==UserStyle==
@name Baraag Expanded Layout
@version 1.1.0
@author lymalyk
@description Widens the main content column on Baraag for large screen sizes. Also expands headers on profiles.
@namespace userstyles.world/user/lymalyk
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://baraag.net") {
@media screen and (min-width: 1700px) {
.columns-area__panels__main {
max-width: 900px;
}
.columns-area__panels__pane__inner {
width: auto;
max-width: 400px;
}
.compose-panel {
width: 350px;
}
}
.account__header__image {
height: auto;
max-height: 500px;
}
}