Question is in the title. I’m trying to unblur NSFW posts on lemmy using my browser on PC. I have looked in settings and found an option to show NSFW content but that still doesn’t unblur it. TIA.

  • BrikoX@vlemmy.net
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    Add custom CSS to your userstyles manager.

    /* NSFW automatic un-blur */
    /**************************/
    .img-blur {
    	filter: none !important;
    	-webkit-filter: none !important;
    	 -moz-filter: none !important;
    	 -o-filter: none !important;
    	 -ms-filter: none !important;
    	}