mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +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
20 lines
360 B
SCSS
20 lines
360 B
SCSS
// Code block atom
|
|
|
|
.code-block {
|
|
background: rgba(0, 0, 0, 0.4);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-sm);
|
|
overflow-x: auto;
|
|
margin-bottom: var(--spacing-md);
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
.code-block code {
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
[data-theme="light"] .code-block {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
}
|