1
0
Fork 0

fix: popup style 깨짐 개선

This commit is contained in:
sychoi 2024-04-29 10:23:25 +09:00
parent 43872a9adf
commit 6b6f4a7745
3 changed files with 8 additions and 5 deletions

View File

@ -17,8 +17,8 @@
font-size: 14px;
// max-width: 833px;
max-width: max-content;
min-width: 500px;
min-height: 531px;
// min-width: 500px;
// min-height: 531px;
// max-height: fit-content;
// height: 80vh;
padding: 24px;
@ -42,12 +42,16 @@
.awn-popup-confirm.custom-popup {
height: 500px;
min-width: 500px;
// overflow-y: auto;
// overflow-x: hidden;
overflow: hidden;
&.free-height{
height: auto;
}
// &.free-width{
// width: auto;
// }
.awn-popup-title {
font-size: 20px;

View File

@ -1168,8 +1168,6 @@ form .btnFindAddr:hover {
font-size: 14px;
max-width: -moz-max-content;
max-width: max-content;
min-width: 500px;
min-height: 531px;
padding: 24px;
position: relative;
word-break: break-word;
@ -1186,6 +1184,7 @@ form .btnFindAddr:hover {
}
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup {
height: 500px;
min-width: 500px;
overflow: hidden;
}
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup.free-height {

File diff suppressed because one or more lines are too long