34 lines
494 B
SCSS
34 lines
494 B
SCSS
.table {
|
|
width: auto;
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
font-size: 0.9em;
|
|
min-width: 800px;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
|
// overflow-x: scroll;
|
|
|
|
&.cols-5 {
|
|
width: $container-full;
|
|
}
|
|
|
|
tr {
|
|
// width: 100% !important;
|
|
}
|
|
|
|
th, td {
|
|
padding: 12px 15px;
|
|
// width: 100%;
|
|
}
|
|
|
|
thead {
|
|
border-radius: 5px 5px 0 0;
|
|
tr > th {
|
|
color: var(--site-white);
|
|
|
|
&.win {
|
|
background: var(--site-secondary);
|
|
}
|
|
}
|
|
}
|
|
}
|