Compare commits

...

2 Commits

Author SHA1 Message Date
f35ca8c818 #44 Text in place teaser is cut of 2020-12-25 12:39:37 +01:00
b97607aa8d npm sucks bad 2020-12-25 12:39:26 +01:00
3 changed files with 42 additions and 27 deletions

View File

@ -49,6 +49,7 @@
color: $-grey; color: $-grey;
order: 3; order: 3;
flex-basis: 100%; flex-basis: 100%;
.LP-Paragraph { .LP-Paragraph {
font-size: 22px; font-size: 22px;
} }
@ -64,6 +65,7 @@
height: 165px; height: 165px;
} }
} }
.LP-PlaceTeaser--extended { .LP-PlaceTeaser--extended {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@ -81,7 +83,8 @@
align-items: flex-start; align-items: flex-start;
gap: unset; gap: unset;
.LP-Headline, .LP-Paragraph { .LP-Headline,
.LP-Paragraph {
font-size: unset; font-size: unset;
} }
@ -114,6 +117,11 @@
.LP-Paragraph { .LP-Paragraph {
font-size: unset; font-size: unset;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
} }
} }

View File

@ -2,11 +2,12 @@
"name": "Lostplaces", "name": "Lostplaces",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@frctl/fractal": "^1.3.0", "@frctl/fractal": "^1.5.2",
"fractal": "0.0.3", "fractal": "0.0.3",
"lodash": "^4.17.20", "lodash": "^4.17.20",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",
"sass": "^1.26.11" "sass": "^1.30.0",
"sass-loader": "^10.0.5"
}, },
"scripts": { "scripts": {
"sass": "node-sass -w components/main.scss -o public/ --recursive", "sass": "node-sass -w components/main.scss -o public/ --recursive",

View File

@ -923,7 +923,8 @@ body {
justify-content: space-between; justify-content: space-between;
align-items: flex-start; align-items: flex-start;
gap: unset; } gap: unset; }
.LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-Headline, .LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-Paragraph { .LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-Headline,
.LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-Paragraph {
font-size: unset; } font-size: unset; }
.LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-PlaceTeaser__Info .LP-Headline { .LP-PlaceTeaser--extended .LP-PlaceTeaser__Meta .LP-PlaceTeaser__Info .LP-Headline {
font-size: 28px; } font-size: 28px; }
@ -941,7 +942,12 @@ body {
overflow: hidden; overflow: hidden;
order: unset; } order: unset; }
.LP-PlaceTeaser--extended .LP-PlaceTeaser__Description .LP-Paragraph { .LP-PlaceTeaser--extended .LP-PlaceTeaser__Description .LP-Paragraph {
font-size: unset; } font-size: unset;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis; }
.LP-PlaceTeaser--extended .LP-PlaceTeaser__Image { .LP-PlaceTeaser--extended .LP-PlaceTeaser__Image {
height: 165px; height: 165px;
width: 280px; width: 280px;