40 lines
687 B
SCSS
40 lines
687 B
SCSS
@use '../abstract' as abstract;
|
|
|
|
.slt-vereine {
|
|
@include abstract.for-narrow-screen {
|
|
display: block;
|
|
line-height: 150%;
|
|
|
|
> tbody,
|
|
tr,
|
|
td {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
tr {
|
|
padding: 7px 0;
|
|
|
|
&:first-child {
|
|
display: none;
|
|
}
|
|
|
|
> td:first-child {
|
|
display: none;
|
|
}
|
|
|
|
> td:nth-child(2) {
|
|
font-weight: bold;
|
|
}
|
|
|
|
> td:nth-child(4)::before {
|
|
content: 'Ansprechpartner: ';
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|