mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-28 15:03:12 +08:00
24 lines
388 B
CSS
24 lines
388 B
CSS
/* Tables */
|
|
.table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
|
|
td,
|
|
th {
|
|
border-bottom: var(--border-width) solid var(--secondary-border-color);
|
|
padding: var(--unit-2) var(--unit-2);
|
|
}
|
|
|
|
th {
|
|
font-weight: 500;
|
|
border-bottom-color: var(--border-color);
|
|
}
|
|
|
|
th:first-child,
|
|
td:first-child {
|
|
padding-left: 0;
|
|
}
|
|
}
|