mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-15 04:42:23 +08:00
36 lines
739 B
SCSS
36 lines
739 B
SCSS
|
@import './mixins/mixins.scss';
|
||
|
@import './theme/default.scss';
|
||
|
|
||
|
@include b(input) {
|
||
|
.inner-input {
|
||
|
box-sizing: border-box;
|
||
|
border: none;
|
||
|
border-radius: 8px;
|
||
|
padding: 12px 20px;
|
||
|
outline: none;
|
||
|
background-color: #6F768B;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #fff;
|
||
|
font-family: 'Open Sans';
|
||
|
width: 100%;
|
||
|
&::placeholder {
|
||
|
color: rgba(255, 255, 255, .4);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
.inner-textarea {
|
||
|
box-sizing: border-box;
|
||
|
border: none;
|
||
|
border-radius: 8px;
|
||
|
padding: 12px 20px;
|
||
|
outline: none;
|
||
|
background-color: #6F768B;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #fff;
|
||
|
font-family: 'Open Sans';
|
||
|
width: 100%;
|
||
|
resize: vertical
|
||
|
}
|
||
|
}
|