import * as React from 'react'; import Head from 'next/head'; import { Spacer } from '@1milligram/design'; import { RelatedPatterns } from '../../components/RelatedPatterns'; import { Pattern } from '../../constants/Pattern'; import { PatternLayout } from '../../layouts/PatternLayout'; import Block from '../../placeholders/Block'; import BrowserFrame from '../../placeholders/BrowserFrame'; import Rectangle from '../../placeholders/Rectangle'; const Details: React.FC<{}> = () => { return (
Move the mouser over the main element to see the tooltip.
...
...
`} css={` .container { /* Used to position the arrow */ position: relative; } /* Show the arrow and content and restore pointer events when hovering the trigger element */ .container:hover .container__arrow, .container:hover .container__content { opacity: 1; pointer-events: initial; } .container__arrow { /* Invisible by default */ opacity: 0; /* To prevent accidental interactions with other elements */ pointer-events: none; /* Border */ border: 8px solid transparent; border-top-color: #00439e; /* Position */ bottom: 100%; left: 50%; position: absolute; transform: translate(-50%, 8px); /* Zero size */ height: 0; width: 0; /* Displayed on top of other element */ z-index: 10; } .container__content { /* Invisible by default */ opacity: 0; /* To prevent accidental interactions with other elements */ pointer-events: none; /* Background color, must be the same as the border color of arrow */ background-color: #00439e; border-radius: 2px; /* Position */ bottom: 100%; left: 50%; position: absolute; transform: translate(-50%, -8px); /* Displayed on top of other element */ z-index: 10; } `} >
); }; export default Details;