2020-06-05
1252
#css
Nada Rifki
19827
Jun 5, 2020 â‹… 4 min read

10 Tailwind CSS tips to boost your productivity

Nada Rifki Nada is a JavaScript developer who likes to play with UI components to create interfaces with great UX. She specializes in Vue.js and loves sharing anything and everything that could help her fellow frontend web developers. Nada also dabbles in digital marketing, dance, and Chinese.

Recent posts:

React Native List Components: FlashList, FlatList, And More

React Native list components: FlashList, FlatList, and more

Explore the evolution of list components in React Native, from `ScrollView`, `FlatList`, `SectionList`, to the recent `FlashList`.

Chimezie Innocent
Jan 16, 2025 â‹… 4 min read
Building An AI Agent For Your Frontend Project

Building an AI agent for your frontend project

Explore the benefits of building your own AI agent from scratch using Langbase, BaseUI, and Open AI, in a demo Next.js project.

Ivaylo Gerchev
Jan 15, 2025 â‹… 12 min read
building UI sixty seconds shadcn framer ai

Building a UI in 60 seconds with Shadcn and Framer AI

Demand for faster UI development is skyrocketing. Explore how to use Shadcn and Framer AI to quickly create UI components.

Peter Aideloje
Jan 14, 2025 â‹… 6 min read
Server-Side Rendering With React Router V7

Server-side rendering with React Router v7

The recent merge of Remix and React Router in React Router v7 provides a full-stack framework for building modern SSR and SSG applications.

Amazing Enyichi Agu
Jan 13, 2025 â‹… 20 min read
View all posts

3 Replies to "10 Tailwind CSS tips to boost your productivity"

  1. Hi i’ve add new breakpoint like this

    module.exports = {
    theme: {
    screens: {
    xs: “375px”,
    m: “425px”,

    sm: “640px”,
    // => @media (min-width: 640px) { … }
    md: “768px”,
    // => @media (min-width: 768px) { … }
    lg: “1024px”,
    // => @media (min-width: 1024px) { … }
    xl: “1280px”,
    // => @media (min-width: 1280px) { … }
    },
    },
    };

    but when i test

    DIdntWorK

  2. In my case I wanted to extract everything into components but have overwritable styles for said components. You can use @apply inside of a vue components scoped style to do that. Best of both worlds.

Leave a Reply