파일 드레그 가이드 문구 레이아웃 및 최소사이즈 대화방 컨텐츠 수정(반응형)
This commit is contained in:
parent
6657461150
commit
5ba9d7fe9c
|
@ -126,7 +126,7 @@
|
||||||
|
|
||||||
.file-drop-zone {
|
.file-drop-zone {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 10px 10px 0 10px;
|
padding: 10px;
|
||||||
background-color: rgb(54, 54, 54, 0.8);
|
background-color: rgb(54, 54, 54, 0.8);
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
$tablet-s-width: 768px;
|
$tablet-s-width: 768px;
|
||||||
|
|
||||||
.bubble-main {
|
.bubble-main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
|
@ -6,10 +6,10 @@
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
padding: 6px 20px;
|
padding: 6px 20px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
border-radius: 100px;
|
border-radius: 20px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
margin: 10px 0 20px;
|
margin: 10px 0 20px;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
line-height:1.2em
|
line-height: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
$tablet-s-width: 768px;
|
||||||
|
|
||||||
.bubble-main {
|
.bubble-main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -47,8 +49,14 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
border-right: 1px solid #dddddd;
|
border-right: 1px solid #dddddd;
|
||||||
|
@media screen and (max-width: #{$tablet-s-width}) {
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
&:last-child {
|
&:last-child {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
|
@media screen and (max-width: #{$tablet-s-width}) {
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.mat-button {
|
.mat-button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -114,5 +114,5 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-error {
|
.mat-error {
|
||||||
font-size: 0.8em;
|
font-size: 0.84em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,8 @@ mat-icon {
|
||||||
border: none;
|
border: none;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
justify-items: center;
|
||||||
|
justify-content: center;
|
||||||
i {
|
i {
|
||||||
font-family: 'material-outline-icons';
|
font-family: 'material-outline-icons';
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|
|
@ -34,8 +34,11 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngIf="uploadItems" fxLayout="column">
|
<div *ngIf="uploadItems" fxLayout="column" class="uploadItems">
|
||||||
<div>{{ 'common.file.dropZoneForUpload' | translate }}</div>
|
<div class="msg-guide">
|
||||||
|
<span class="icon-img"><i class="mid mdi-arrow-expand-all"></i></span
|
||||||
|
>{{ 'common.file.dropZoneForUpload' | translate }}
|
||||||
|
</div>
|
||||||
<div></div>
|
<div></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -38,4 +38,18 @@
|
||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.uploadItems {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0.9em;
|
||||||
|
.msg-guide {
|
||||||
|
display: flex;
|
||||||
|
flex: row;
|
||||||
|
color: #ffffff;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
.icon-img {
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user