49 lines
819 B
SCSS

@charset 'utf-8';
.container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
flex: 1;
padding: 20px 30px;
.add-option {
display: inline-flex;
margin-right: 20px;
i {
font-size: 20px;
color: #666;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
&:hover {
color: #333333;
background-color: #efefef;
border-radius: 50%;
}
}
}
}
textarea[name='message'] {
min-height: 30px;
}
.mat-form-field-underline {
background-color: none;
}
.send-message-button {
margin-left: 20px;
i {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
line-height: 40px;
font-size: 20px;
color: #ffffff;
&:hover {
opacity: 0.8;
}
}
}