44 lines
729 B
SCSS
44 lines
729 B
SCSS
.main_form_body {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
background: var(--bg);
|
|
padding: 40px 10px;
|
|
> * {
|
|
// max-width: 30%;
|
|
flex-basis: 33%;
|
|
}
|
|
}
|
|
|
|
.AttachmentForm {
|
|
.main_form_body {
|
|
padding: 30px 50px;
|
|
gap: 40px;
|
|
> * {
|
|
// max-width: 30%;
|
|
flex-basis: 10%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.resellerButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 20px;
|
|
padding: 20px;
|
|
button {
|
|
all: unset;
|
|
cursor: pointer;
|
|
padding: 8px 26px;
|
|
font-size: 15px;
|
|
border-radius: 5px;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
&:first-child {
|
|
background: #f2f4f8;
|
|
color: #515b73;
|
|
box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.08);
|
|
}
|
|
}
|
|
}
|