Added basic accounts system and integration with new api calls
This commit is contained in:
parent
7df189c3b4
commit
10f347ea0c
5 changed files with 199 additions and 35 deletions
34
src/App.css
34
src/App.css
|
@ -4,6 +4,40 @@
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
input {
|
||||
border-radius: 10px;
|
||||
border-color: #000;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
|
||||
padding: 3px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 10px;
|
||||
border-width: 0px;
|
||||
|
||||
background-color: cornflowerblue;
|
||||
color: white;
|
||||
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 3px
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.error-banner {
|
||||
background-color: #f08080;
|
||||
border-radius: 10px;
|
||||
padding: 3px;
|
||||
height: max-content;
|
||||
}
|
||||
|
||||
.low-severity {
|
||||
background-color: #98fb98
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue