CSS duplication on page change #6418
vishalrharage
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
.gjs-row{
display:flex;
justify-content:flex-start;
align-items:stretch;
flex-wrap:nowrap;
padding-top:10px;
padding-right:10px;
padding-bottom:10px;
padding-left:10px;
}
.gjs-cell{
min-height:75px;
flex-grow:1;
flex-basis:100%;
}
.gjs-row{
display:flex;
justify-content:flex-start;
align-items:stretch;
flex-wrap:nowrap;
padding-top:10px;
padding-right:10px;
padding-bottom:10px;
padding-left:10px;
}
.gjs-cell{
min-height:75px;
flex-grow:1;
flex-basis:100%;
}
@media (max-width: 768px){
.gjs-row{
flex-wrap:wrap;
}
.gjs-row{
flex-wrap:wrap;
}
}
The css is getting duplicated
I have already given protected css as empty string and styleManager: { clearProperties: 1 },
but still issue persists
Beta Was this translation helpful? Give feedback.
All reactions