You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I have discovered an issue in the style.css file where the position property is assigned multiple times for the .layout-container class. This can lead to unexpected behavior in the layout and should be addressed to improve the code quality.
Issue Details:
File:style.css
Container:.layout-container (on line 910)
Duplicate Property:position
Screenshot:
Expected Behavior:
Each CSS property should only be assigned once per container to avoid conflicts. The second assignment of position will override the first, leading to potential layout issues and confusion.
Proposed Solution:
Remove the duplicate position property. Determine the intended value (either relative or sticky) and keep only that assignment in the code.
Additional Information:
Fixing this issue will enhance the maintainability of the code and ensure that the styling behaves as expected.
The text was updated successfully, but these errors were encountered:
Thanks @divanshiii09 for raising this issue! We'll look into it.We hope you have made sure that a similar issue doesnt exist , if it does, kindly ask to be assigned on that issue
Description:
I have discovered an issue in the
style.css
file where theposition
property is assigned multiple times for the.layout-container
class. This can lead to unexpected behavior in the layout and should be addressed to improve the code quality.Issue Details:
style.css
.layout-container
(on line 910)position
Screenshot:
Expected Behavior:
Each CSS property should only be assigned once per container to avoid conflicts. The second assignment of
position
will override the first, leading to potential layout issues and confusion.Proposed Solution:
position
property. Determine the intended value (eitherrelative
orsticky
) and keep only that assignment in the code.Additional Information:
Fixing this issue will enhance the maintainability of the code and ensure that the styling behaves as expected.
The text was updated successfully, but these errors were encountered: