mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-10 14:54:12 +00:00
Device default background color updated
This commit is contained in:
parent
b66ad6414b
commit
48a28d791a
6 changed files with 10 additions and 15 deletions
|
@ -9,6 +9,7 @@ body {
|
|||
color: white;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
|
||||
/*
|
||||
background-color: #232c39;
|
||||
background-image: linear-gradient(45deg, rgba(0, 216, 255, 0.5) 10%, rgba(0, 1, 127, 0.7));
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
// @flow
|
||||
import React, {Component} from 'react';
|
||||
import React from 'react';
|
||||
import Grid from '@material-ui/core/Grid';
|
||||
|
||||
import ZoomContainer from '../../containers/ZoomContainer';
|
||||
import AddressBar from '../../containers/AddressBar';
|
||||
import Grid from '@material-ui/core/Grid';
|
||||
import cx from 'classnames';
|
||||
|
||||
import styles from './style.module.css';
|
||||
|
||||
const Header = function(props) {
|
||||
const Header = function() {
|
||||
return (
|
||||
<div className={styles.header}>
|
||||
<Grid
|
||||
|
|
|
@ -7,4 +7,5 @@
|
|||
|
||||
.device {
|
||||
transform-origin: top left;
|
||||
background: white;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import React, {Fragment} from 'react';
|
||||
// @flow
|
||||
import React from 'react';
|
||||
import logoImage from '../../../resources/logo.svg';
|
||||
|
||||
export default ({width, height, color}) => (
|
||||
<img src={logoImage} height={height} width={width} />
|
||||
<img src={logoImage} height={height} width={width} alt="" />
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.appRoot {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
margin: 0px;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "browser-extension"
|
||||
}
|
||||
],
|
||||
"settings": {}
|
||||
}
|
Loading…
Reference in a new issue