styleui-components
Version:
Lightweight, modular UI component library with zero dependencies
36 lines (31 loc) • 797 B
CSS
/*------------------------------------*\\
#VARIABLES SECTION
\\*------------------------------------*/
.variables-table {
width: 100%;
border-collapse: collapse;
}
.variables-table td {
padding: var(--space-3) var(--space-4);
border-bottom: 1px solid var(--border-color);
text-align: left;
vertical-align: middle;
}
.variables-table tr:last-child td {
border-bottom: none;
}
.variables-table td:first-child {
font-family: var(--font-mono);
font-size: var(--text-sm);
color: var(--text-primary);
line-height: 1.2;
}
.variable-color-swatch {
display: inline-block;
width: 20px;
height: 20px;
border-radius: var(--radius-sm);
border: 1px solid var(--overlay-medium);
vertical-align: middle;
margin-right: var(--space-2);
}