We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0397d08 commit 2abaf79Copy full SHA for 2abaf79
changelog.md
@@ -0,0 +1,35 @@
1
+# Changelog
2
+
3
+# [1.2.1]
4
5
+### Updated
6
+- Packages updated
7
8
+### Fixed
9
+- Sign up name type of input
10
+- Dot component size prop
11
+- Performance errors
12
13
+# [1.2.0]
14
15
16
+- Packages update
17
+- Link to Full version
18
19
20
+- User login state improvements
21
22
+## [1.1.0]
23
24
+### New Feactures
25
26
+- React v16.8.6
27
+- React Router v5
28
+- new React Hooks
29
+- Material UI v4.3
30
31
+Bug fixes
32
33
+## [1.0.0]
34
35
+Initial version of the project
src/components/Sidebar/Sidebar.js
@@ -66,19 +66,19 @@ const structure = [
66
id: 12,
67
label: "My recent",
68
link: "",
69
- icon: <Dot size="large" color="warning" />,
+ icon: <Dot size="small" color="warning" />,
70
},
71
{
72
id: 13,
73
label: "Starred",
74
75
- icon: <Dot size="large" color="primary" />,
+ icon: <Dot size="small" color="primary" />,
76
77
78
id: 14,
79
label: "Background",
80
81
- icon: <Dot size="large" color="secondary" />,
+ icon: <Dot size="small" color="secondary" />,
82
83
];
84
src/components/Sidebar/SidebarView.js
@@ -43,9 +43,9 @@ const structure = [
43
{ id: 9, label: 'FAQ', link: '', icon: <FAQIcon />},
44
{ id: 10, type: 'divider' },
45
{ id: 11, type: 'title', label: 'PROJECTS' },
46
- { id: 12, label: 'My recent', link: '', icon: <Dot size="large" color="secondary" /> },
47
- { id: 13, label: 'Starred', link: '', icon: <Dot size="large" color="primary" /> },
48
- { id: 14, label: 'Background', link: '', icon: <Dot size="large" color="secondary" /> },
+ { id: 12, label: 'My recent', link: '', icon: <Dot size="small" color="secondary" /> },
+ { id: 13, label: 'Starred', link: '', icon: <Dot size="small" color="primary" /> },
+ { id: 14, label: 'Background', link: '', icon: <Dot size="small" color="secondary" /> },
49
50
51
const SidebarView = ({ classes, theme, toggleSidebar, isSidebarOpened, isPermanent, location }) => {
src/components/Sidebar/components/Dot.js
@@ -5,15 +5,19 @@ import classnames from "classnames";
// styles
var useStyles = makeStyles(theme => ({
dotBase: {
- width: 5,
- height: 5,
+ width: 8,
+ height: 8,
backgroundColor: theme.palette.text.hint,
borderRadius: "50%",
transition: theme.transitions.create("background-color"),
+ dotSmall: {
+ width: 5,
+ height: 5
+ },
dotLarge: {
- width: 8,
- height: 8,
+ width: 11,
+ height: 11,
}));
src/pages/login/Login.js
@@ -163,7 +163,7 @@ function Login(props) {
163
onChange={e => setNameValue(e.target.value)}
164
margin="normal"
165
placeholder="Full Name"
166
- type="email"
+ type="text"
167
fullWidth
168
/>
169
<TextField
0 commit comments