54 lines
937 B
SCSS
Raw Normal View History

2019-10-24 10:07:30 +09:00
@charset 'utf-8';
2019-09-26 14:38:21 +09:00
.container {
display: flex;
2019-10-21 13:20:14 +09:00
flex-direction: column;
2019-09-26 14:38:21 +09:00
width: 100%;
height: 100%;
flex: 1;
2020-01-08 20:42:14 +09:00
padding: 10px 30px 20px;
2019-10-21 13:20:14 +09:00
.add-option {
display: inline-flex;
margin-right: 20px;
i {
font-size: 20px;
color: #666;
width: 30px;
height: 30px;
2019-10-21 13:20:14 +09:00
text-align: center;
line-height: 30px;
&:hover {
color: #333333;
background-color: #efefef;
border-radius: 50%;
2019-10-21 13:20:14 +09:00
}
}
}
}
textarea[name='message'] {
min-height: 30px;
}
.mat-form-field-underline {
background-color: none;
2019-10-21 13:20:14 +09:00
}
2020-01-08 20:42:14 +09:00
::ng-deep .send-message-button {
2019-10-21 13:20:14 +09:00
margin-left: 20px;
2020-01-08 20:42:14 +09:00
.mat-button-wrapper {
display: flex;
justify-content: center;
justify-items: center;
}
i {
2019-10-21 13:20:14 +09:00
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
line-height: 40px;
2019-10-21 13:20:14 +09:00
font-size: 20px;
color: #ffffff;
&:hover {
2019-10-24 10:07:30 +09:00
opacity: 0.8;
2019-10-21 13:20:14 +09:00
}
}
}