Browse Source

style(lint): fix lint errors

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
37c0fe6a6e
  1. 55
      app/components/Contacts/SubmitChannelForm.scss

55
app/components/Contacts/SubmitChannelForm.scss

@ -2,17 +2,24 @@
.content { .content {
padding: 0 40px; padding: 0 40px;
font-family: Roboto; font-family: Roboto, sans-serif;
color: $white; color: $white;
margin: 0 auto; margin: 0 auto;
width: 500px; width: 500px;
.header { .header {
padding: 20px; padding: 20px;
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid $spaceborder;
h1 { h1 {
margin-bottom: 15px; margin-bottom: 15px;
font-size: 20px; font-size: 20px;
font-size: 22px;
font-weight: 100;
margin-top: 10px;
letter-spacing: 1.5px;
} }
p { p {
@ -23,19 +30,6 @@
} }
} }
.header {
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid $spaceborder;
h1 {
font-size: 22px;
font-weight: 100;
margin-top: 10px;
letter-spacing: 1.5px;
}
}
.title { .title {
margin: 20px 0; margin: 20px 0;
line-height: 32px; line-height: 32px;
@ -43,8 +37,8 @@
h2 { h2 {
font-size: 14px; font-size: 14px;
background: $spaceblue; background: $spaceblue;
padding: 5px; padding: 10px;
border-radius: 0px; border-radius: 17.5px;
display: inline; display: inline;
} }
} }
@ -55,24 +49,22 @@
align-items: center; align-items: center;
input { input {
font-size: 20px; font-size: 40px;
max-width: 110px; max-width: 110px;
background: transparent;
outline: none;
border: 1px solid #404040;
border-radius: 4px;
padding: 15px;
color: $gold;
-webkit-text-fill-color: $white;
width: 100%;
font-weight: 200;
} }
} }
.input input { .input input::-webkit-input-placeholder,
background: transparent; ::-webkit-input-placeholder {
outline: none;
border:1px solid #404040;
border-radius: 4px;
padding: 15px;
color: $gold;
-webkit-text-fill-color: $white;
width: 100%;
font-weight: 200;
}
.input input::-webkit-input-placeholder, ::-webkit-input-placeholder {
text-shadow: none; text-shadow: none;
-webkit-text-fill-color: initial; -webkit-text-fill-color: initial;
} }
@ -99,7 +91,6 @@
font-weight: bold; font-weight: bold;
} }
} }
} }
ul { ul {
@ -145,7 +136,7 @@
&.active { &.active {
background: $gold; background: $gold;
opacity: 1.0; opacity: 1;
&:hover { &:hover {
background: darken($gold, 5%); background: darken($gold, 5%);

Loading…
Cancel
Save