mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui-components.git
synced 2026-01-26 01:03:13 +00:00
35 lines
631 B
CSS
35 lines
631 B
CSS
|
|
.table {
|
||
|
|
border-collapse: collapse;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-container {
|
||
|
|
border: 1px solid var(--codex-border-color);
|
||
|
|
background-color: var(--codex-background-secondary);
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: var(--codex-border-radius);
|
||
|
|
overflow-x: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-theadTr {
|
||
|
|
border-bottom: 1px solid var(--codex-border-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-theadTh {
|
||
|
|
color: var(--codex-color-light);
|
||
|
|
font-weight: normal;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
text-align: left;
|
||
|
|
padding: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-tbodyTr {
|
||
|
|
border-bottom: 1px solid var(--codex-border-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-tbodyTd {
|
||
|
|
text-align: left;
|
||
|
|
padding: 1rem;
|
||
|
|
}
|