You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.2 KiB
68 lines
1.2 KiB
.root { |
|
position: relative; |
|
bottom: 0px; |
|
width: 100%; |
|
padding: .3rem; |
|
color: var(--text-secondry); |
|
overflow-x: hidden; |
|
div[role=textbox] { |
|
font-size: 0.9rem; |
|
border-radius: .2rem; |
|
padding: .6rem; |
|
padding-right: calc(0.6rem + 44px); |
|
background-color: var(--color-owncast-gray-700); |
|
box-shadow: 0; |
|
transition: box-shadow 50ms ease-in-out; |
|
&:focus { |
|
box-shadow: inset 0px 0px 0x 1px var(--color-owncast-purple-700); |
|
outline: 1px solid var(--color-owncast-gray-500) !important; |
|
} |
|
& > p { |
|
margin: 0px; |
|
} |
|
} |
|
|
|
.inputWrapper { |
|
display: flex; |
|
position: relative; |
|
margin-right: .3rem; |
|
border-radius: .2rem; |
|
& > div { |
|
transition: box-shadow .2s ease-in-out; |
|
} |
|
} |
|
|
|
.emojiButton { |
|
border: none; |
|
background: none; |
|
cursor: pointer; |
|
padding: 0 1rem; |
|
position: absolute; |
|
right: 0px; |
|
top: 50%; |
|
transform: translateY(-50%); |
|
svg { |
|
fill: var(--color-owncast-gray-300); |
|
} |
|
} |
|
|
|
.submitButtonWrapper { |
|
display: flex; |
|
padding: 6px 0; |
|
justify-content: flex-end; |
|
} |
|
} |
|
|
|
|
|
|
|
.mobile { |
|
&.root { |
|
display: flex; |
|
.inputWrapper { |
|
flex: 1; |
|
} |
|
.submitButtonWrapper { |
|
padding: 0px; |
|
} |
|
} |
|
}
|
|
|