diff of a1c2d8e4b890dda75391d8b732abb7f4263701fa
a1c2d8e4b890dda75391d8b732abb7f4263701fa
diff --git a/elm-frontti/src/FeedView.elm b/elm-frontti/src/FeedView.elm
index c9bf244..dee02d7 100644
--- a/elm-frontti/src/FeedView.elm
+++ b/elm-frontti/src/FeedView.elm
@@ -29,6 +29,7 @@ feed_item time_format zone item =
button [ onClick <| ReadFeedItem feed_id item.id (not is_read) ] [ text "Mark as read"]]
, div [ class "feed-author"] [ text <| "By " ++ item.author]
, div [ class "feed-item"
+ -- this is a bit moronic xss vuln, I should research how others have sanitized the html from rss/atom feeds
, dangerouslySetInnerHTML item.description] []]
Nothing ->
li [] [ text "Unknown feed" ]
diff --git a/resources/css/murja.css b/resources/css/murja.css
index a9eb426..aaaa882 100644
--- a/resources/css/murja.css
+++ b/resources/css/murja.css
@@ -81,11 +81,11 @@ html, body {
.page {
flex: 8 1;
bottom: 0;
-
-
display: flex;
flex-flow: row wrap;
align-content: flex-start;
+ width: 100%;
+ max-width: 100%;
}
.post {