• 2 Posts
  • 5 Comments
Joined 2 years ago
cake
Cake day: March 3rd, 2023

help-circle




  • I managed to get something working (not really used to CSS editing) with a custom Stylus css: https://i.imgur.com/FMAZYbh.png

    Basically I put these into a Stylus style, still trying to figure out how to make it only affect Lemmy.ml domains but got a happy accident where it affects Github too so might keep it like this lol

    Just adjust max-width under the .containers to whatever size you desire (this really should be a user settable option) and I got the col-md-8 and col-md-4 options set to 80% (for main content) and 20% (for the sidebar content).

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 2560px !important;
    }
    
    .col-md-8 {
        flex: 0 0 80% !important;
        max-width: 80% !important;
    }
    
    .col-md-4 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }