diff --git a/src/common/ServerNotification/ServerNotification.js b/src/common/ServerNotification/ServerNotification.js
index a1e9ec930..3f21e4b38 100644
--- a/src/common/ServerNotification/ServerNotification.js
+++ b/src/common/ServerNotification/ServerNotification.js
@@ -1,12 +1,14 @@
// Copyright (C) 2017-2020 Smart code 203358507
const React = require('react');
+const PropTypes = require('prop-types');
+const classnames = require('classnames');
const Button = require('stremio/common/Button');
const styles = require('./styles');
-const ServerNotification = () => {
+const ServerNotification = ({ className }) => {
return (
-
+
Streaming server must be available.
-
+
);
};
diff --git a/src/routes/Board/styles.less b/src/routes/Board/styles.less
index 6f8949c26..37fbddff6 100644
--- a/src/routes/Board/styles.less
+++ b/src/routes/Board/styles.less
@@ -40,6 +40,11 @@
}
}
}
+
+ .board-notification-container {
+ flex: none;
+ align-self: stretch;
+ }
}
@media only screen and (max-width: @large) {