mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c3ed95bc48
[web] BS5 projects table migration GitOrigin-RevId: 237bd8113c68d7fd1b66712f7361eb956b1e10e7
50 lines
691 B
SCSS
50 lines
691 B
SCSS
.table-container {
|
|
flex: 1;
|
|
margin-bottom: var(--spacing-06);
|
|
background-color: var(--white);
|
|
|
|
.table {
|
|
margin-bottom: initial;
|
|
}
|
|
}
|
|
|
|
.table {
|
|
tr {
|
|
&:last-child {
|
|
td {
|
|
border-bottom-width: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
th,
|
|
td {
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.table-container-bordered {
|
|
padding: var(--spacing-04);
|
|
border-color: $table-border-color;
|
|
border-radius: var(--border-radius-base);
|
|
border-width: var(--bs-border-width);
|
|
border-style: solid;
|
|
}
|
|
|
|
.table-hover {
|
|
th {
|
|
&:hover {
|
|
background-color: $table-hover-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
.table-striped {
|
|
tr,
|
|
td {
|
|
border-top-width: 0;
|
|
border-bottom-width: 0;
|
|
}
|
|
}
|