mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
feat(styles): create global styles entry point and organize global styles feat(styles): implement base HTML element styles and utility classes for flexbox feat(styles): establish layout, position, spacing, and text utility classes feat(styles): introduce mixins for animations, cards, dialogs, flexbox, grid, and responsive design test(quick_guide): add component and metadata validation tests for quick_guide package test(ui_level6): implement metadata validation tests for ui_level6 package
14 lines
260 B
SCSS
14 lines
260 B
SCSS
// Inline code atom
|
|
|
|
.code-inline {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.9em;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 2px 6px;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
[data-theme="light"] .code-inline {
|
|
background: rgba(0, 0, 0, 0.08);
|
|
}
|