From bcffb8d7c6671fe0ddef7800d61e1deca93fabdd Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Mon, 2 Jul 2018 14:42:49 +0200
Subject: External chat css

---
 resources/assets/sass/app.scss  | 14 +++++++-------
 resources/assets/sass/chat.scss |  5 +++++
 2 files changed, 12 insertions(+), 7 deletions(-)
 create mode 100644 resources/assets/sass/chat.scss

(limited to 'resources')

diff --git a/resources/assets/sass/app.scss b/resources/assets/sass/app.scss
index c58e2db..ce64b3f 100644
--- a/resources/assets/sass/app.scss
+++ b/resources/assets/sass/app.scss
@@ -1,16 +1,16 @@
 // Fonts
 @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
+
 // Variables
 @import "variables";
+
 // Bootstrap
-@import '~bootstrap/scss/bootstrap';
+@import "~bootstrap/scss/bootstrap";
+
+// Chat
+@import "chat";
+
 .navbar-laravel {
     background-color: #fff;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
-}
-
-.MessagesWindow {
-    height: 250px;
-    overflow-y: scroll;
-    padding: 15px;
 }
\ No newline at end of file
diff --git a/resources/assets/sass/chat.scss b/resources/assets/sass/chat.scss
new file mode 100644
index 0000000..026d089
--- /dev/null
+++ b/resources/assets/sass/chat.scss
@@ -0,0 +1,5 @@
+.MessagesWindow {
+    height: 250px;
+    overflow-y: scroll;
+    padding: 15px;
+}
\ No newline at end of file
-- 
cgit v1.2.3