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

44 lines
731 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] {
2022-05-22 15:28:51 +03:00
font-size: 0.9rem;
2022-05-17 17:36:07 +03:00
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 15:28:51 +03:00
2022-05-22 09:37:23 +03:00
.inputWrapper {
display: flex;
position: relative;
}
.emojiButton {
border: none;
background: none;
cursor: pointer;
padding: 0 1rem;
2022-05-22 09:37:23 +03:00
position: absolute;
right: 0px;
top: 50%;
transform: translateY(-50%);
svg {
fill: var(--color-owncast-gray-300);
}
2022-05-22 09:37:23 +03:00
}
.submitButtonWrapper {
display: flex;
padding: 6px 0;
justify-content: flex-end;
}