style text area

This commit is contained in:
Roberto Beltran 2021-03-18 00:06:25 -04:00
parent c8ba17ae11
commit 15c4abaf6c
1 changed files with 37 additions and 1 deletions

View File

@ -1,5 +1,41 @@
$bg-color: black;
$vice-pink: #F890E7;
$vice-blue: #0BD3D3;
$white: black !default;
$border-color: white;
@import '../MetroMumbleDark/main';
.toolbar-vertical ~ .chat {
height: calc(98% - 20px)
}
#message-box {
resize: none;
background-color: $white;
border: 1px solid $vice-pink;
transition: border-color 0.7s ease;
padding: 0.75em;
border-radius: 3px;
line-height: 1em;
height: 1em;
vertical-align: bottom;
font-size: 16px;
}
#message-box:focus-visible {
border-color: $vice-blue;
outline: none;
box-shadow: none;
}
form[data-bind="submit: submitMessageBox"] {
margin-right: 1.6em;
}
.log {
background-color: $bg-color;
border-color: $border-color;
height: calc(100% - 43px);
}
.channel-root-container {
background-color: $bg-color;
border-color: $border-color;
}