import React from 'react' import { type Meta, type StoryFn } from '@storybook/react' import { StickerSheet } from '~storybook/components/StickerSheet' export default { title: 'Guides/Tailwind/Utility Class References/Modifiers/Pseudo Selectors', parameters: { a11y: { disable: true }, docsLayout: 'fullPage', docs: { description: { component: 'Add a modifier before a standard tailwind utility class to have it apply in certain states. For example, hover:text-blue-500 will set the font color to blue-500 on hover.', }, }, }, } satisfies Meta export const PseudoSelectors: StoryFn = () => (

hover:bg-blue-200

background-color: #bde2f5

focus:bg-blue-200

background-color: #bde2f5

)