18 lines
333 B
SCSS
18 lines
333 B
SCSS
@use "../abstract" as abstract;
|
|
|
|
table.pressespiegel {
|
|
@include abstract.for-narrow-screen {
|
|
tr {
|
|
&:first-child {
|
|
display: none;
|
|
}
|
|
|
|
> td {
|
|
&:last-child::before {
|
|
content: "Rubrik: ";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|