mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-20 18:16:30 +03:00
Merges the impeccable-detect CLI repo (pbakaus/impeccable-cli@831a6cc) into this repo. The BSL-1.1 license that motivated the split is gone; everything is now Apache 2.0. - Add bin/, src/, detection tests and fixtures from CLI repo - Merge package.json: name → "impeccable", add bin/exports/files fields - Internal refs now read from local src/ instead of node_modules/ - Update SPDX headers, NOTICE.md, CLAUDE.md, FAQ, npm README - Add prepack/postpack scripts for CLI-focused README on npm - Remove terminal license labels (no longer needed) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
528 B
TypeScript
26 lines
528 B
TypeScript
// Clean CSS-in-JS patterns -- no anti-patterns
|
|
|
|
import styled from 'styled-components';
|
|
import { css } from '@emotion/react';
|
|
|
|
export const Card = styled.div`
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
font-family: 'Geist', system-ui, sans-serif;
|
|
`;
|
|
|
|
export const Hero = styled.section`
|
|
background-color: #0f172a;
|
|
padding: 80px 20px;
|
|
|
|
h1 {
|
|
color: #f8fafc;
|
|
font-size: 3rem;
|
|
}
|
|
`;
|
|
|
|
export const smoothPanel = css`
|
|
transition: opacity 0.3s ease, transform 0.2s ease;
|
|
`;
|