🎨
This commit is contained in:
parent
63d8b7986b
commit
c89410cab0
3 changed files with 5 additions and 4 deletions
|
@ -217,6 +217,7 @@ onBeforeUnmount(() => {
|
||||||
content: "";
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
z-index: -1;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
|
|
@ -78,8 +78,8 @@ const inputEl = shallowRef<HTMLElement>();
|
||||||
const prefixEl = shallowRef<HTMLElement>();
|
const prefixEl = shallowRef<HTMLElement>();
|
||||||
const suffixEl = shallowRef<HTMLElement>();
|
const suffixEl = shallowRef<HTMLElement>();
|
||||||
const height =
|
const height =
|
||||||
props.small ? 35 :
|
props.small ? 34 :
|
||||||
props.large ? 39 :
|
props.large ? 40 :
|
||||||
37;
|
37;
|
||||||
|
|
||||||
const focus = () => inputEl.value.focus();
|
const focus = () => inputEl.value.focus();
|
||||||
|
|
|
@ -64,8 +64,8 @@ const prefixEl = ref(null);
|
||||||
const suffixEl = ref(null);
|
const suffixEl = ref(null);
|
||||||
const container = ref(null);
|
const container = ref(null);
|
||||||
const height =
|
const height =
|
||||||
props.small ? 35 :
|
props.small ? 34 :
|
||||||
props.large ? 39 :
|
props.large ? 40 :
|
||||||
37;
|
37;
|
||||||
|
|
||||||
const focus = () => inputEl.value.focus();
|
const focus = () => inputEl.value.focus();
|
||||||
|
|
Loading…
Reference in a new issue