Quiz_dashboard/src/Styles/Pages/reSeller.scss
2024-09-12 13:41:25 +03:00

50 lines
1.1 KiB
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,.08);
}
}
}