-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,9 +83,8 @@ | |
.envelope { | ||
text-align: center; | ||
opacity: 0.75; | ||
height: 250px; | ||
padding-top: 100px; | ||
padding-bottom: 100px; | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
} | ||
|
||
.conversation-messages-message-list.is-fetching-posts { | ||
|
@@ -116,7 +115,10 @@ jhi-posting-thread { | |
} | ||
|
||
.channel-content { | ||
height: calc(100vh - 15px - var(--header-height) - var(--message-input-height-dev) - var(--channel-header-height)); | ||
height: calc(100vh - 1rem - var(--header-height) - var(--message-input-height-dev) - var(--channel-header-height)); | ||
@include media-breakpoint-down(md) { | ||
Check notice on line 119 in src/main/webapp/app/overview/course-conversations/layout/conversation-messages/conversation-messages.component.scss
|
||
height: calc(100vh - var(--header-height) - var(--message-input-height-dev) - var(--channel-header-height)); | ||
} | ||
display: flex; | ||
Check notice on line 122 in src/main/webapp/app/overview/course-conversations/layout/conversation-messages/conversation-messages.component.scss
|
||
flex-direction: column; | ||
justify-content: space-between; | ||
|