mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
update: scss,nextjs,module (2 files)
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
/* Form organism styles */
|
||||
|
||||
.formItem {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.formLabel {
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
color: var(--color-text-primary, rgba(0, 0, 0, 0.87));
|
||||
|
||||
&.error {
|
||||
color: var(--color-error-main, #d32f2f);
|
||||
}
|
||||
}
|
||||
|
||||
.formHelperText {
|
||||
margin-top: 2px;
|
||||
font-size: 0.75rem;
|
||||
|
||||
&.error {
|
||||
color: var(--color-error-main, #d32f2f);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
/* Table organism styles */
|
||||
|
||||
.tableContainer {
|
||||
border: 1px solid var(--color-divider, rgba(0, 0, 0, 0.12));
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tableHeader {
|
||||
background-color: var(--color-action-hover, rgba(0, 0, 0, 0.04));
|
||||
}
|
||||
|
||||
.tableFooter {
|
||||
background-color: var(--color-action-hover, rgba(0, 0, 0, 0.04));
|
||||
}
|
||||
|
||||
.tableRow {
|
||||
&:last-child td,
|
||||
&:last-child th {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-action-hover, rgba(0, 0, 0, 0.04));
|
||||
}
|
||||
}
|
||||
|
||||
.tableHeadCell {
|
||||
font-weight: 600;
|
||||
font-size: 0.75rem;
|
||||
color: var(--color-text-secondary, rgba(0, 0, 0, 0.6));
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
|
||||
&.clickable {
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-action-hover, rgba(0, 0, 0, 0.04));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableCell {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.tableCaption {
|
||||
caption-side: bottom;
|
||||
padding: 16px;
|
||||
color: inherit;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
Reference in New Issue
Block a user