Skip to content

google tasks multirow by b-jonathan

Details

Authorb-jonathan

LicenseNo License

Categorytest

Created

Updated

Code size837 B

Code checksumbc305bfd

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

A new userstyle

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           google.com
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    A new userstyle
@author         Me
==/UserStyle== */
@-moz-document url("https://tasks.google.com/*") {
    /* Insert code here... */
    /* Prevent horizontal scrolling */
    div[role="main"] > div {
        overflow-x: hidden !important;
    }

    /* The wrapper of the task list cards */
    [role="main"] > div > div:nth-child(2) {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
    }

    /* Each task list card */
    [role="main"] [data-task-id] {
        flex: 1 1 45%;
        /* Adjust width: 2 per row */
        max-width: 48%;
        min-width: 300px;
    }
}

Reviews

No reviews yet.