Search code examples
cssreactjstailwind-cssstyling

TailwindCSS: is it possible to remove a box-shadow on print?


I have a div with a classes that look like this className={`${cardSelected && 'shadow-factors'} bg-white rounded-md cursor-pointer`}

Right now I'm setting up a print version of the page and I was wondering if it is possible to somehow remove this shadow-factors / box-shadow for the printed version with TailwindCSS toolset?


Solution

  • In order to make it work I had to add the following to the config:

    // tailwind.config.js
    module.exports = {
      theme: {
        extend: {
          screens: {
            'print': {'raw': 'print'},
            // => @media print { ... }
          }
        }
      }
    }
    

    With this being added to config any print: statements are working now, including print:shadow-none