Skip to content

Instantly share code, notes, and snippets.

@inmanturbo
Forked from heytulsiprasad/tailwind.js
Created January 25, 2025 16:24
Show Gist options
  • Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e to your computer and use it in GitHub Desktop.
Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e to your computer and use it in GitHub Desktop.

Revisions

  1. @heytulsiprasad heytulsiprasad created this gist Sep 4, 2020.
    20 changes: 20 additions & 0 deletions tailwind.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    module.exports = {
    theme: {
    extend: {},
    screens: {
    xl: { max: "1279px" },
    // => @media (max-width: 1279px) { ... }

    lg: { max: "1023px" },
    // => @media (max-width: 1023px) { ... }

    md: { max: "767px" },
    // => @media (max-width: 767px) { ... }

    sm: { max: "639px" },
    // => @media (max-width: 639px) { ... }
    },
    },
    variants: {},
    plugins: [],
    };