Connect room name overflow (#9561)

* change tag to h2 to avoid the overflow

* delect commit

* make the font size bigger when screen size is more than 1000px

* Update chat.scss

Co-authored-by: Michael Kohl <citizen428@dev.to>
Co-authored-by: Michael Kohl <me@citizen428.net>
This commit is contained in:
Veggier 2021-03-25 02:16:58 -04:00 committed by GitHub
parent 03465e8882
commit 5249b99338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -308,6 +308,9 @@
}
@media screen and (min-width: 1000px) {
h2 {
font-size: 2rem;
}
margin-left: initial;
padding: 18px;
max-width: 480px;

View file

@ -8,7 +8,7 @@ export const ChannelDescriptionSection = ({
}) => {
return (
<div className="p-4 grid gap-2 crayons-card mb-4 channel_details">
<h1 className="mb-1 channel_title">{channelName}</h1>
<h2 className="mb-1 channel_title">{channelName}</h2>
<p>{channelDescription}</p>
<p className="fw-bold">You are a channel {currentMembershipRole}</p>
</div>