bito-code-review[bot] commented on PR #38108:
URL: https://github.com/apache/superset/pull/38108#issuecomment-4617901691

   <!-- Bito Reply -->
   The observation regarding potential overlap is correct. In 
`docs/src/styles/main.css`, `.footer__social-links` is positioned absolutely at 
`top: 45px` with a height determined by its padding and image size, while 
`.footer__ci-services` is also present in the footer structure. To prevent 
overlap, you can adjust the positioning of `.footer__social-links` or use 
flexbox/grid layout on the parent container to ensure the elements stack 
vertically without relying on absolute positioning.
   
   **docs/src/styles/main.css**
   ```
   .footer__social-links {
     background-color: #173036;
     position: absolute;
     top: 45px;
     left: 0;
     width: 100%;
     padding: 10px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 24px;
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to