This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/main by this push:
     new 063695a642 fix:improve footer responsiveness on smaller screens (#3626)
063695a642 is described below

commit 063695a642a3adc5a1c74663d7ffe87c5128285c
Author: Prakash Kumar <[email protected]>
AuthorDate: Sat Jan 24 19:39:34 2026 +0530

    fix:improve footer responsiveness on smaller screens (#3626)
    
    * fix:improve footer responsiveness on smaller screens
    
    * fix: address footer responsiveness review feedback
---
 doc/assets/scss/_styles_project.scss | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/doc/assets/scss/_styles_project.scss 
b/doc/assets/scss/_styles_project.scss
index b69a1eb167..ec1ca5926d 100644
--- a/doc/assets/scss/_styles_project.scss
+++ b/doc/assets/scss/_styles_project.scss
@@ -33,3 +33,30 @@
 .navbar-brand {
   font-family: "PT Mono", monospace;
 }
+
+@media (max-width: 992px) {
+
+  footer .row {
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+  }
+
+  footer .row > div {
+    width: 100%;
+    max-width: 100%;
+    text-align: center;
+    margin-bottom: 1.25rem;
+  }
+
+  footer ul.list-inline {
+    display: flex;
+    justify-content: center;
+    flex-wrap: wrap;
+  }
+
+  footer ul.list-inline li {
+    margin: 0.4rem;
+  }
+}
+

Reply via email to