forked from elangosundar/postlify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsageContainer.js
More file actions
54 lines (49 loc) · 1.08 KB
/
UsageContainer.js
File metadata and controls
54 lines (49 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import React from "react";
import styled from "styled-components";
const Wrapper = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
width: 27%;
z-index: 99;
padding: 0.7rem 0.7rem;
float: left;
background-color: var(--bg-dark-color);
color: var(--fg-light-color);
margin-left: 8px;
border-radius: 8px;
.page-columns-right {
flex: 1;
flex-flow: column;
padding: 10px;
width: 100%;
}
@media screen and (max-width: 1093px) {
width: 25%;
}
@media screen and (max-width: 1090px) {
width: 25%;
}
@media screen and (max-width: 870px) {
width: 85%;
}
@media screen and (max-width: 670px) {
width: 85%;
}
@media screen and (max-width: 600px) {
width: 85%;
}
@media screen and (max-width: 530px) {
width: 85%;
}
`;
const UsageContainer = () => {
return (
<Wrapper>
<div className="page-columns-right">
<label> Welcome to History Container page </label>
</div>
</Wrapper>
);
}
export default UsageContainer;