boolean-uk / team-dev-frontend-client

1 stars 11 forks source link

Fix CSS in ProfilePage and EditProfile - HIGH PRIORITY! #173

Closed Joelzor closed 1 year ago

Joelzor commented 1 year ago

Switch element selectors to classes

All below styles will be switched to classes

ProfilePage.css

div p {
  list-style: none;
  text-align: left;
  margin-left: 30px;
  margin-right: 30px;
}

div hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

ProfileEdit.css


label {
  text-align: left;
  margin-left: 5px;
}

input {
  border-radius: 5px;
  padding-left: 5px;
  height: 30px;
  margin-bottom: 10px;
}

select {
  height: 29px;
  margin-bottom: 10px;
  padding-left: 5px;
}

select,
textarea {
  border-radius: 5px;
}