mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +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
24 lines
389 B
SCSS
24 lines
389 B
SCSS
// Table atom
|
|
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.table th,
|
|
.table td {
|
|
border: 1px solid var(--color-divider);
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
font-weight: 600;
|
|
}
|
|
|
|
[data-theme="light"] .table th {
|
|
background: rgba(0, 0, 0, 0.04);
|
|
}
|