chakra-ui---responsive-design

chakra-ui---responsive-design is a cursor rule for Cursor from holtwood/awesome-cursorrules-zh. It costs 0 tokens per session (478 once invoked), scanned A, original, MIT.

Guidance for making Chakra UI layouts adapt to different screen sizes. It uses responsive style values, breakpoints, layout components, and conditional display rules for phones, tablets, and desktops.

In plain words
What is it for?
Use it when building responsive React pages with Chakra UI, changing columns or text sizes by screen width, or showing and hiding elements at specific breakpoints.
Why use it?
It avoids building separate layouts for every device and helps prevent interfaces from becoming hard to use on small screens. It also keeps responsive behavior in the theme and components.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it when building responsive React pages with Chakra UI, changing columns or text sizes by screen width, or showing and hiding elements at specific breakpoints.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/holtwood/awesome-cursorrules-zh/chakra-ui-responsive-design
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/holtwood/awesome-cursorrules-zh

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for chakra-ui---responsive-design

README.md
[![agentmods](https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-responsive-design.svg)](https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-responsive-design)
Your own site
<a href="https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/chakra-ui-responsive-design"><img src="https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/chakra-ui-responsive-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 478 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00478
Opus 5 $0.00000 $0.00239
Sonnet 5 $0.00000 $0.00096
Haiku 4.5 $0.00000 $0.00048

Measured 4d ago against content hash e5ad5352bb58, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

chakra-ui---responsive-design scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/rules/frontend/react/chakra-ui/chakra-ui---responsive-design.mdc · 33 lines

What it actually says

  • 使用 Chakra UI 的布局组件进行响应式设计
    • 响应式样式:利用 Chakra UI 的响应式样式语法,通过数组或对象语法为不同断点(breakpoints)应用不同的样式。
    • 断点定制:在主题配置中定制或扩展默认断点,以适应项目特定的设计需求。
    • 布局组件:使用 BoxFlexGridStack 等布局组件构建灵活的响应式布局。
    • useBreakpointValue Hook:使用 useBreakpointValue Hook 根据当前断点动态地选择值。
    • 示例
      import { Box, Flex, Text, useBreakpointValue } from '@chakra-ui/react';
      
      function ResponsiveLayout() {
        const columns = useBreakpointValue({ base: 1, md: 2, lg: 3 });
      
        return (
          <Box p={4}>
            <Text fontSize={{ base: 'md', md: 'lg', lg: 'xl' }}>
              This text changes size based on screen width.
            </Text>
            <Flex direction={{ base: 'column', md: 'row' }} mt={4}>
              <Box flex="1" bg="blue.100" p={4} m={2}>Column 1</Box>
              <Box flex="1" bg="green.100" p={4} m={2}>Column 2</Box>
              {columns > 2 && <Box flex="1" bg="red.100" p={4} m={2}>Column 3</Box>}
            </Flex>
          </Box>
        );
      }
      
    • 隐藏/显示组件:使用 display 属性的响应式值(如 display={{ base: 'none', md: 'block' }})来控制组件在不同断点下的显示与隐藏。
    • 可访问性:确保响应式设计在不同屏幕尺寸和设备上都能保持良好的可访问性。
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 33 lines · 0 tokens per session scan A e5ad5352bb58

Subscribe to this mod's changes

chakra-ui---responsive-design is a cursor rule published in the GitHub repository holtwood/awesome-cursorrules-zh (232 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 478 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.