80 lines
1.5 KiB
SCSS
Raw Normal View History

2019-10-24 10:07:30 +09:00
@charset 'utf-8';
$tablet-l-width: 1024px;
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;
padding: 0 2vw 2vh;
2019-10-21 13:20:14 +09:00
.add-option {
display: inline-flex;
margin-right: 20px;
2020-01-20 18:54:24 +09:00
justify-items: center;
width: 80px;
justify-content: space-between;
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
margin-right: 10px;
2019-10-21 13:20:14 +09:00
}
2020-01-20 18:54:24 +09:00
button {
2020-01-31 15:27:08 +09:00
width: 24px;
height: 24px;
line-height: normal;
2020-01-31 15:27:08 +09:00
margin-right: 6px;
color: rgb(0, 0, 0, 0.7);
.mat-icon {
font-size: 20px;
color: rgb(0, 0, 0, 0.87);
width: 20px;
height: 20px;
text-align: center;
&:hover {
color: rgb(0, 0, 0, 0.6);
background-color: #efefef;
border-radius: 50%;
}
}
2020-01-31 15:27:08 +09:00
i {
font-size: 24px;
}
2020-01-20 18:54:24 +09:00
svg {
2020-01-31 15:27:08 +09:00
fill: rgb(0, 0, 0, 0.7);
2020-01-20 18:54:24 +09:00
}
}
2019-10-21 13:20:14 +09:00
}
}
2020-01-31 15:27:08 +09:00
textarea[name='message'] {
2020-01-10 12:10:07 +09:00
min-height: 2em;
line-height: 1.2em;
font-size: 0.9em;
}
2020-01-31 15:27:08 +09:00
.mat-form-field-flex {
padding-top: 0;
}
2020-01-31 15:27:08 +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;
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
margin-left: 10px;
}
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
}
}
}