From f11351b5237b048888026a7c39a66f7d80488a9e Mon Sep 17 00:00:00 2001 From: chsakell Date: Wed, 5 Oct 2016 10:39:52 +0300 Subject: [PATCH] fix unsubscribe --- Data/LiveGameDbInitializer.cs | 6 ++++-- app/shared/components/chat.component.html | 2 +- app/shared/components/match.component.html | 2 +- wwwroot/css/site.css | 5 +++++ 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Data/LiveGameDbInitializer.cs b/Data/LiveGameDbInitializer.cs index 6d9a0a6..f9ab0a1 100644 --- a/Data/LiveGameDbInitializer.cs +++ b/Data/LiveGameDbInitializer.cs @@ -33,7 +33,8 @@ namespace LiveGameFeed.Data new Feed() { Description = "Match started", - MatchId = 1 + MatchId = 1, + CreatedAt = DateTime.Now } } }; @@ -51,7 +52,8 @@ namespace LiveGameFeed.Data new Feed() { Description = "Match started", - MatchId = 2 + MatchId = 2, + CreatedAt = DateTime.Now } } }; diff --git a/app/shared/components/chat.component.html b/app/shared/components/chat.component.html index 0480f3c..f0f1a00 100644 --- a/app/shared/components/chat.component.html +++ b/app/shared/components/chat.component.html @@ -12,7 +12,7 @@ -
+
diff --git a/app/shared/components/match.component.html b/app/shared/components/match.component.html index 2d03851..f386aa4 100644 --- a/app/shared/components/match.component.html +++ b/app/shared/components/match.component.html @@ -22,7 +22,7 @@ - diff --git a/wwwroot/css/site.css b/wwwroot/css/site.css index b110977..c4adc1f 100644 --- a/wwwroot/css/site.css +++ b/wwwroot/css/site.css @@ -32,6 +32,11 @@ th, td { overflow: auto; } +.chat-table { + height: 240px; + overflow: auto; +} + .feed-time { color:brown; font-size: 10px;