Date Posted: May 08, 2025
.formWrap {
padding: 12px;
background-color: var(--white);
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 12px;
/* min-height: max-content; */
height: fit-content;
}
.titleSection {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.inputWrap{
/* max-height: 175px; */
display: flex;
}
/* image uppload */
.titleSection > div:first-child {
width: 300px;
border-radius: 5px;
overflow: hidden;
}
.inputBtn {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 4px;
}
/* titles input */
.titleSection > div:last-child {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
gap: 12px;
}
.tagsSection {
display: flex;
align-items: center;
height: 50px;
}
.tagsSection > h3 {
font-weight: 500;
margin-right: 12px;
}
.tagsSection > span {
flex: 1;
display: flex;
gap: 12px;
}
.toggleItem {
padding: 4px;
display: flex;
cursor: pointer;
gap: 4px;
text-transform: none;
font-size: 14px;
font-weight: 300;
}
.toggleItem > span {
text-decoration: underline;
cursor: pointer;
}
.seoModal{
margin-top: 12px;
display: flex;
flex-direction: column;
}
.seoModal>p{
margin-bottom: 12px;
width: 100%;
font-size: 16px;
line-height: 20px;
}
.tagsGroup{
margin-top: 12px;
padding: 5px;
display: flex;
flex-wrap: wrap;
gap: 10px;
min-height: 100px;
overflow-y: auto;
}
.editorWrap{
height: 100%;
}
/* mobile view */
@media screen and (max-width: 480px) {
.titleSection > div:first-child {
width: 100%;
}
.tagsSection {
height: unset;
flex-direction: column;
align-items: flex-start;
}
.tagsSection > span {
width: 100%;
justify-content: space-evenly;
}
.formWrap {
height: unset;
min-height: unset;
}
}