Compare commits

..

No commits in common. "e6231f86b4c047e823d6c695a67a94c8481525fc" and "f654851e1aaf9b139e4b619bfa385df7811091c0" have entirely different histories.

9 changed files with 5 additions and 91 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "enterfront",
"version": "0.2.3",
"version": "0.2.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "enterfront",
"version": "0.2.3",
"version": "0.2.2",
"dependencies": {
"@brojs/cli": "^1.0.0",
"@brojs/create": "^1.0.0",

View File

@ -24,5 +24,5 @@
"clean": "rimraf dist"
},
"name": "enterfront",
"version": "0.2.3"
"version": "0.2.2"
}

View File

@ -1,17 +0,0 @@
import React from 'react';
import { URLs } from "../../__data__/urls";
import ActionButton from "./ActionButton.jsx";
const AccountButtons = (props) => {
return (
<div className="account-buttons">
<ActionButton title={"Exit"} action={props.exitHandler}/>
<ActionButton title={"Change Name"} action={props.changeNameHandler}/>
<ActionButton title={"Change Pass"} action={props.changePassHandler}/>
<a className="MyButton mclaren-regular" href={URLs.home.url}>Back</a>
</div>
);
};
export default AccountButtons;

View File

@ -1,11 +0,0 @@
import React from 'react';
const ActionButton = (props) => {
return (
<a className="MyButton mclaren-regular" onClick={() => {
props.action()
}}>{props.title}</a>
);
};
export default ActionButton;

View File

@ -1,29 +0,0 @@
.account-buttons {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.account-buttons a {
display: flex;
font-size: 1.5vw;
transition: color 0.2s ease-in;
width: 20vw;
margin-top: 2vw;
}
.account-buttons a:hover {
color: black;
}
@media only screen and (max-width: 800px) {
.account-buttons a {
font-size: 2.5vh;
width: 60vw;
margin-top: 3vh;
}
}

View File

@ -1,7 +1,6 @@
@import url("reg/index.css");
@import url("init/index.css");
@import url("home/index.css");
@import url("account/index.css");
.MyButton {
text-decoration: none;

View File

@ -1,22 +1,7 @@
import React from "react";
import AccountButtons from "../components/account/AccountButtons.jsx";
import userIcon from "../../images/user.svg";
const Account = () => {
const exitHandler = () => {}
const changeNameHandler = () => {}
const changePassHandler = () => {}
return (
<div className="account-items">
<img src={userIcon} alt="user" />
<AccountButtons
exitHandler={exitHandler}
changeNameHandler={changeNameHandler}
changePassHandler={changePassHandler}
/>
</div>
);
return <h1>Account</h1>;
};
export default Account;

View File

@ -1,12 +0,0 @@
.account-items {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 5vw;
}
.account-items img {
margin-bottom: 1vw;
}

View File

@ -1,4 +1,3 @@
@import url("css/init.css");
@import url("css/home.css");
@import url("css/input.css");
@import url("css/account.css");
@import url("css/input.css");