diff options
author | Marvin Borner | 2018-07-02 14:42:49 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-02 14:42:49 +0200 |
commit | bcffb8d7c6671fe0ddef7800d61e1deca93fabdd (patch) | |
tree | 6cd01673ed73ef056c3fbdbb25bec3fde0f15e53 /resources/assets | |
parent | f7abf66d963770e60e2ed2a67fbeaa14e14568a6 (diff) |
External chat css
Diffstat (limited to 'resources/assets')
-rw-r--r-- | resources/assets/sass/app.scss | 14 | ||||
-rw-r--r-- | resources/assets/sass/chat.scss | 5 |
2 files changed, 12 insertions, 7 deletions
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 |