diff --git a/client/coral-embed-stream/style/default.css b/client/coral-embed-stream/style/default.css
index 300323d37..b8592b925 100644
--- a/client/coral-embed-stream/style/default.css
+++ b/client/coral-embed-stream/style/default.css
@@ -1,3 +1,8 @@
+html, body {
+ width:auto;
+ height:auto;
+}
+
body {
font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
@@ -76,6 +81,7 @@ hr {
.commentStream {
/* prevent absolutely positioned final permalink popover from being clipped */
padding-bottom: 50px;
+ /*height: 100vh;*/
}
/* Comment Box Styles */
diff --git a/client/coral-framework/modules/notification/Notification.js b/client/coral-framework/modules/notification/Notification.js
index 965c17a2d..08a5ecbca 100644
--- a/client/coral-framework/modules/notification/Notification.js
+++ b/client/coral-framework/modules/notification/Notification.js
@@ -3,6 +3,7 @@ import {SnackBar} from 'coral-ui';
const Notification = (props) => {
if (props.notification.text) {
+
// setTimeout(() => {
// props.clearNotification();
// }, props.notifLength);
diff --git a/client/coral-ui/components/SnackBar.css b/client/coral-ui/components/SnackBar.css
index 3c39c4aca..0daf9a152 100644
--- a/client/coral-ui/components/SnackBar.css
+++ b/client/coral-ui/components/SnackBar.css
@@ -1,6 +1,4 @@
.SnackBar {
- top: 0;
- background: red;
position: fixed;
cursor: default;
background-color: #323232;
@@ -9,11 +7,12 @@
will-change: transform;
transition: transform .25s cubic-bezier(.4,0,1,1);
pointer-events: none;
- transform: translate(-50%,80px);
padding: 18px 14px;
vertical-align: middle;
color: #fff;
border-radius: 3px;
text-align: center;
left: 50%;
+ bottom: 0;
+ transform: translate(-50%, 0);
}
diff --git a/client/coral-ui/components/SnackBar.js b/client/coral-ui/components/SnackBar.js
index 9e4abb032..380613f4c 100644
--- a/client/coral-ui/components/SnackBar.js
+++ b/client/coral-ui/components/SnackBar.js
@@ -1,5 +1,5 @@
import React from 'react';
-import styles from './SnackBar.css'
+import styles from './SnackBar.css';
const SnackBar = ({children}) => (
{children}