owncast/web/components/chat/ChatTextField/ChatTextField.module.scss

37 lines
617 B
SCSS
Raw Normal View History

2022-05-04 00:55:13 +03:00
.root {
2022-05-22 09:37:23 +03:00
position: absolute;
bottom: 0px;
width: 100%;
2022-05-17 17:36:07 +03:00
padding: .3rem;
color: var(--text-secondry);
2022-05-22 09:37:23 +03:00
overflow-x: hidden;
2022-05-17 17:36:07 +03:00
div[role=textbox] {
padding: .6rem;
2022-05-22 09:37:23 +03:00
padding-right: calc(0.6rem + 44px);
2022-05-17 17:36:07 +03:00
border-radius: .35rem;
background-color: var(--color-owncast-gray-700);
& > p {
margin: 0px;
}
}
2022-05-12 09:31:31 +03:00
}
2022-05-22 09:37:23 +03:00
.inputWrapper {
display: flex;
position: relative;
}
.emojiButton {
border: none;
margin-right: 5px;
position: absolute;
right: 0px;
top: 50%;
transform: translateY(-50%);
}
.submitButtonWrapper {
display: flex;
padding: 6px 0;
justify-content: flex-end;
}