1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .sendMessage {
- position: fixed;
- bottom: 0;
- height: 88px;
- width: calc(385px - 32px);
- display: flex;
- align-items: center;
- padding: 0 16px;
- .form {
- display: flex;
- align-items: center;
- width: 100%;
- background-color: var(--message-color);
- border-radius: 60px;
- }
- :global {
- .el-input {
- border-radius: 60px;
- overflow: hidden;
- font-size: 16px;
- // background-color: transparent;
- }
- .el-input__inner {
- height: 46px;
- line-height: 46px;
- padding-left: 20px;
- background-color: transparent;
- border: 0;
- color: var(--live-color)
- }
- .el-button {
- border: 0;
- background-color: #00A79D;
- height: 46px;
- line-height: 46px;
- border-radius: 46px;
- color: var(--live-color);
- font-weight: 600;
- padding: 0 23px;
- font-size: 16px;
- &.is-disabled {
- background-color: var(--el-button-disabled-bg-color);
- border-color: var(--el-button-disabled-border-color);
- }
- }
- }
- }
|