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
449 B

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