mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
26 lines
484 B
SCSS
26 lines
484 B
SCSS
.table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
.table > thead {
|
|
border-radius: var(--border-radius-inner);
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.table > tbody {
|
|
border-radius: var(--border-radius-inner);
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.table td, th {
|
|
padding: var(--padding-small);
|
|
border: 1px solid var(--secondary-muted-color);
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
background: var(--secondary-color);
|
|
}
|