🌈
NextGenCSS
  • 🔥NextGenCSS🔥
    • How to Contribute ?
  • Installation
    • Install and Use
    • Set Up
    • React
  • 🌟Quick Start
    • Get Started
    • Optimizations
    • Breakpoints
    • Colors
    • Buttons
    • BackGround Color
    • Border
    • Font
    • Icons
  • 🧩Components
    • Box
    • Card
    • Footer
    • NavBar
    • Switch
  • ⚒️Utilities
    • Display
    • Align
    • Center
    • Flex
    • Left
    • Right
    • Padding
    • Margin
    • Grid
    • Scale
  • forms
    • Input Box
  • ☺️Releases and Changelog
    • 0.0 🔥🔥 1st Release
Powered by GitBook
On this page
  • Responsive size
  • Custom Breakpoints

Was this helpful?

Edit on GitHub
  1. Quick Start

Breakpoints

Responsiveness

Responsive size

Responsive design size are categorized into 3 different categories

Mobile, Tablet, Desktop

  • Mobile : between 0px and 767px

  • Tablet : between 768px and 991px

  • Desktop : between 992px and ...

Custom Breakpoints

// ./src/syntax/_syntax.scss

//breakpoints
    font-sizes: (
        default: 16px,
        mobile: 16px,
        tablet: 18px,
        desktop: 20px
    ),
    breakpoints: (
        mobile: 767px,
        tablet: 992px,
        desktop: 1200px
    ),

Last updated 1 year ago

Was this helpful?

🌟