93 lines
1.9 KiB
SCSS
93 lines
1.9 KiB
SCSS
.ant-modal-root .ant-modal-wrap {
|
|
@include Scrollbar;
|
|
}
|
|
|
|
.ant-modal .ant-modal-content {
|
|
padding: 0;
|
|
border-radius: 10px;
|
|
.ant-modal-close {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.ModalForm {
|
|
position: relative;
|
|
.ant-divider-horizontal{
|
|
// width: 90% !important;
|
|
margin: 10px 0;
|
|
}
|
|
header {
|
|
display: flex; justify-content: space-between;align-items: center;
|
|
height: 4vw;
|
|
padding: 1vw 1vw;
|
|
z-index: 10;
|
|
color: var(--black);
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
span{
|
|
font-size: 1.4vw;
|
|
}
|
|
svg{
|
|
font-size: 30px;
|
|
color: #6A7287;
|
|
}
|
|
}
|
|
.time_main_modal {
|
|
padding: 0vw 7vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
.main_modal {
|
|
padding: .7vw 0vw !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
main {
|
|
.buttons {
|
|
padding-inline: 0 1vw;
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: end;
|
|
justify-content: end;
|
|
> button,
|
|
> div {
|
|
position: relative;
|
|
outline: none;
|
|
border: none;
|
|
width: 10vw;
|
|
border-radius: 10px;
|
|
padding: 0.7vw;
|
|
font-weight: bold;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
&:nth-child(1) {
|
|
background: var(--white);
|
|
color: var(--primary);
|
|
border: 1px solid #c9c9c9;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
label {
|
|
color: var(--secondary) !important;
|
|
}
|
|
.ant-select-outlined:not(.ant-select-customize-input) .ant-select-selector {
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
}
|
|
.ant-modal-root .ant-modal-centered .ant-modal{
|
|
width: 45vw ;
|
|
}
|
|
.ant-modal .ant-modal-body{
|
|
padding-inline:1vw !important;
|
|
}
|
|
|