Added some more things for login 🎉

This commit is contained in:
cami 2021-06-21 05:48:01 +02:00
parent 9621a12f0c
commit 60415ad83f
4 changed files with 13 additions and 2 deletions

View file

@ -1,6 +1,11 @@
.input-field {
width: auto;
}
.input-field p{
font-size: 36px;
}
.input-field input {
width: 100%;
border-color: var(--primary);
}

View file

@ -1,9 +1,11 @@
import React from "react";
import "./Input.css"
import "./Button.css"
function SubmitField(props) {
const InputValue = props.LabelName;
return (
<label>
<label className="input-field" className="btn btn--primary btn--medium">
<input type="submit" value={InputValue} />
</label>
);