sass-site/source/assets/sass/components/_tables.scss

42 lines
575 B
SCSS
Raw Normal View History

2023-01-12 20:54:24 +01:00
@use '../breakpoints';
2023-01-12 19:19:42 +01:00
$table-cell-padding: 1rem * 0.5;
2023-01-06 22:40:29 +01:00
.sl-c-table {
margin: 1.5rem 0;
border: 0;
width: 100%;
max-width: 100%;
td,
th {
border: 0;
2023-01-09 20:10:02 +01:00
padding: 0.75rem $table-cell-padding;
2023-01-06 22:40:29 +01:00
vertical-align: top;
}
th,
caption {
text-align: left;
}
2023-01-12 19:19:42 +01:00
@include breakpoints.sl-breakpoint--medium-max {
2023-01-06 22:40:29 +01:00
&-responsive {
margin-bottom: 1.5rem;
width: 100%;
overflow: {
x: auto;
y: hidden;
}
2023-01-09 20:10:02 +01:00
table {
margin-bottom: 0;
}
2023-01-06 22:40:29 +01:00
2023-01-09 20:10:02 +01:00
td {
white-space: nowrap;
}
2023-01-06 22:40:29 +01:00
}
}
}