Changed from 1 column to 2
This commit is contained in:
parent
5fa27e0906
commit
6f3cac4848
3 changed files with 27 additions and 26 deletions
|
|
@ -2,11 +2,11 @@ import Logo from './Logo';
|
||||||
import ScanBlocks from './ScanBlocks';
|
import ScanBlocks from './ScanBlocks';
|
||||||
|
|
||||||
const MainColumn = () => (
|
const MainColumn = () => (
|
||||||
<div className="centerBlockOuter">
|
<>
|
||||||
<div className="centerBlockInner">
|
<Logo />
|
||||||
<Logo />
|
<div className="centerBlockOuter">
|
||||||
<ScanBlocks />
|
<ScanBlocks />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</>
|
||||||
);
|
);
|
||||||
export default MainColumn;
|
export default MainColumn;
|
||||||
|
|
|
||||||
|
|
@ -14,14 +14,18 @@ import FiltersBlock from './FiltersBlock';
|
||||||
|
|
||||||
const ScanBlocks = () => (
|
const ScanBlocks = () => (
|
||||||
<>
|
<>
|
||||||
<IntlBlock />
|
<div className="centerBlockInner">
|
||||||
<FingerprintBlock />
|
<IntlBlock />
|
||||||
<LocationBlock />
|
<FingerprintBlock />
|
||||||
<ConnectionBlock />
|
<NavigatorBlock />
|
||||||
<NavigatorBlock />
|
<UserAgentBlock />
|
||||||
<UserAgentBlock />
|
</div>
|
||||||
<ScreenBlock />
|
<div className="centerBlockInner">
|
||||||
<OtherBlock />
|
<LocationBlock />
|
||||||
|
<ConnectionBlock />
|
||||||
|
<ScreenBlock />
|
||||||
|
<OtherBlock />
|
||||||
|
</div>
|
||||||
{/* <FingerprintBlock />
|
{/* <FingerprintBlock />
|
||||||
<LocationBlock />
|
<LocationBlock />
|
||||||
<ConnectionBlock />
|
<ConnectionBlock />
|
||||||
|
|
|
||||||
|
|
@ -36,28 +36,25 @@
|
||||||
right: 12px;
|
right: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centerBlockOuter {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex: 1 0 auto;
|
|
||||||
margin: 0 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.centerBlockInner {
|
|
||||||
width: 650px;
|
|
||||||
margin: 24px 0 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logoWrap {
|
.logoWrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
margin: 13px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
width: 270px;
|
width: 270px;
|
||||||
margin: 0 0 14px 0;
|
}
|
||||||
|
|
||||||
|
.centerBlockOuter {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.centerBlockInner {
|
||||||
|
width: 450px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contentBlock {
|
.contentBlock {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue