add .input class to all inputs

This commit is contained in:
Henry Jameson 2024-02-07 15:53:49 +02:00
commit d2a74ea1a2
41 changed files with 108 additions and 98 deletions

View file

@ -112,7 +112,7 @@
<style lang="scss">
@import "../../variables";
.emoji-input {
.input.emoji-input {
display: flex;
flex-direction: column;
position: relative;
@ -127,8 +127,7 @@
line-height: 24px;
&:hover i {
color: $fallback--text;
color: var(--text, $fallback--text);
color: var(--text);
}
}
@ -145,6 +144,10 @@
input,
textarea {
flex: 1 0 auto;
color: inherit;
background: none;
border: none;
outline: none;
}
&.with-picker input {