@hip as PWA uses browser caching to improve performance and provide an offline experience. So reinstalling app makes no difference.
in Android please clear your browser cache first then reload the install app.
Thanks
In the Barrio Drupal 8/9/10 theme, the CSS rule .node .field--type-image { float: left; } is used to float the image field within a node to the left side of its container.
The float property is a CSS property used for positioning elements. When an element is floated, it is taken out of the normal flow of the document and moved to the left or right of its container. This allows other elements to wrap around it.
In the case of .node .field--type-image, the CSS selector targets an image field within a node. By applying float: left, the image field will be floated to the left side of its container, and other elements (such as text or other inline content) can wrap around it on the right side.
By using float: left, the image field can be positioned inline with other elements, creating a more flexible layout for the node content.
It's worth noting that the float property has certain characteristics and can affect the layout and positioning of other elements on the page. To ensure proper alignment and avoid layout issues, it's important to apply appropriate clearing or clearfix techniques to the parent container if necessary.
this code dynamically adds and removes CSS classes on the body element based on the user's scrolling behavior. It can be used to trigger visual changes or apply different styles to elements based on the scroll position and scrolling direction.
this code will gives lot of help to Drupal themers without adding extra js code to achive different effects like fixed header, parallax effect etc.
as a frontend guy I think this is helpful.
Thanks
Hi I've resolved this issue please review