Makes viewing cards a bit wider than normal. Fixed for Trello in 2024
Trello Wide Cards v2 by kenrick95
Details
Authorkenrick95
LicenseCC0-1.0
Categorytrello.com
Created
Updated
Size833 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 Trello Wide Cards v2
@namespace github.com/openstyles/stylus
@author kenrick95
@author fischgeek
@description Makes viewing cards a bit wider than normal. Fixed for Trello in 2024
@version 20241004
@license CC0-1.0
==/UserStyle== */
@-moz-document domain("trello.com") {
@media only screen and (min-width: 750px) {
div[data-elevation="1"] {
width: 100% !important;
}
div[role="dialog"][data-testid="card-back-name"] {
width: 95% !important;
margin-left: auto;
margin-right: auto;
}
div[role="dialog"][data-testid="card-back-name"] > div > div > div:nth-last-child(1) {
grid-template-columns: [main] minmax(568px, 80%) [sidebar] minmax(0, 1fr) !important;
}
}
}