pleroma/app/styles/components/inputs.scss

18 lines
420 B
SCSS
Raw Normal View History

2020-03-27 13:59:38 -07:00
input[type='text'],
textarea {
2020-05-15 20:48:08 -07:00
&.standard {
@apply border-gray-400;
2020-05-28 17:58:37 -07:00
@include font-size(16);
@include line-height(18);
@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;
color: var(--brand-color);
2020-06-02 15:42:09 -07:00
background: var(--foreground-color);
&:focus { outline: none; }
2020-05-15 20:48:08 -07:00
}
2020-03-27 13:59:38 -07:00
}
textarea.standard { resize: vertical; }