2020-03-27 13:59:38 -07:00
|
|
|
input[type='text'],
|
|
|
|
textarea {
|
2020-05-15 20:48:08 -07:00
|
|
|
&.standard {
|
2022-12-21 12:01:57 -08:00
|
|
|
@apply border-gray-400;
|
2020-05-28 17:58:37 -07:00
|
|
|
@include font-size(16);
|
|
|
|
@include line-height(18);
|
2022-12-21 12:01:57 -08:00
|
|
|
@include input-placeholder(#868393);
|
2020-05-15 20:48:08 -07:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 7px 10px;
|
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 4px;
|
2020-05-30 12:50:08 -07:00
|
|
|
color: var(--brand-color);
|
2020-06-02 15:42:09 -07:00
|
|
|
background: var(--foreground-color);
|
2020-10-11 14:23:19 -07:00
|
|
|
&:focus { outline: none; }
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
2020-10-11 14:23:19 -07:00
|
|
|
textarea.standard { resize: vertical; }
|