diff --git a/src/components/views/auth/VectorAuthPage.js b/src/components/views/auth/VectorAuthPage.js index 53ef801909..dac1eae307 100644 --- a/src/components/views/auth/VectorAuthPage.js +++ b/src/components/views/auth/VectorAuthPage.js @@ -29,14 +29,39 @@ module.exports = React.createClass({ render: function() { const AuthFooter = sdk.getComponent('auth.AuthFooter'); - const style = { + const pageStyle = { background: 'center/cover fixed url(../../themes/riot/img/backgrounds/valley.jpg)', }; + const modalStyle = { + position: 'relative', + background: 'initial', + }; + + const blurStyle = { + position: 'absolute', + top: 0, + right: 0, + bottom: 0, + left: 0, + filter: 'blur(10px)', + background: pageStyle.background, + }; + + const modalContentStyle = { + display: 'flex', + zIndex: 1, + background: 'rgba(255, 255, 255, 0.59)', + borderRadius: '4px', + }; + return ( -