-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/create chat box #4
Conversation
ef72726
to
4013a47
Compare
4013a47
to
a22da0a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also remove the .DS_Store
files?
I'd recommend that you merge this in, then please follow up with commits to address my comments! Thanks!
@@ -0,0 +1,11 @@ | |||
# frozen_string_literal: true | |||
|
|||
class ChatRoomChannel < ApplicationCable::Channel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be live_video_channel
and use it for hearts/messages/etc? Or is it better to have many types of channels?
<p class="web--message__name"> | ||
${name} | ||
</p> | ||
<label class="web--message__label"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you try and prefix everything with "web"? Why not put it on the body-tag and just use it everywhere?
$medium-gray: #d0d0d0; | ||
|
||
@mixin text-style ($f-size, $color, $f-family ,$f-weight) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This definitely seems like it should be in the utils.
$light-silver:#d8d8d8; | ||
$light-blue: #616583; | ||
$medium-gray: #d0d0d0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Break these out into a vars.scss
file.
No description provided.