You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/app/styles/components/inputs.scss

18 lines
463 B

5 years ago
input[type='text'],
textarea {
4 years ago
&.standard {
@include font-size(16);
@include line-height(18);
@include input-placeholder(var(--primary-text-color-faint));
4 years ago
box-sizing: border-box;
padding: 7px 10px;
border: 1px solid;
border-radius: 4px;
color: var(--brand-color);
border-color: var(--primary-text-color-faint);
background: var(--foreground-color);
4 years ago
&:focus {outline: none;}
}
5 years ago
}
textarea.standard {resize: vertical;}