Skip to content

Commit 8a0ecb3

Browse files
Merge pull request #21 from CollabCodeTech/feature/tools-separator
feature/tools-separator
2 parents 82e7a3f + 673f1aa commit 8a0ecb3

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

Diff for: src/pages/Dashboard/index.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
import React from "react";
22

33
import HeaderDashboard from "../../containers/HeaderDashboard";
4+
import { SectionFake } from "./styles";
45

56
function Dashboard() {
6-
return <HeaderDashboard />;
7+
return (
8+
<>
9+
<HeaderDashboard />
10+
<SectionFake />
11+
</>
12+
);
713
}
814

915
export default Dashboard;

Diff for: src/pages/Dashboard/styles.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import styled from "styled-components";
2+
import { _separator } from "../../styles/tools/Separator";
3+
4+
export const SectionFake = styled.section`
5+
height: 300px;
6+
${_separator};
7+
`;

Diff for: src/styles/tools/Separator.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { css } from "styled-components";
2+
3+
export const _separator = css`
4+
border-bottom: 2px solid var(--color-old-silver);
5+
`;

0 commit comments

Comments
 (0)