Skip to content

Commit

Permalink
fix: footer section responsiveness (#273)
Browse files Browse the repository at this point in the history
* fix: Footer section responsiveness

fixes responsiveness of footer section in mobile

* Fixes flex direction and more in mobile screens

* Fixes indentation
  • Loading branch information
shauryag2002 authored Mar 12, 2024
1 parent a6d4aa2 commit 71da2c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Footer/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ function Footer() {
];
return (
<div className="container">
<div className="w-full flex justify-between items-center p-4">
<div className="w-full flex justify-between items-center p-4 sm:flex-col sm:gap-3">
<img src="/img/logo.png" className="w-[150px]" />
<div className="mt-2 text-[14px] text-gray underline">
<div className="mt-2 text-[14px] text-gray-100 underline">
<a
href="https://github.com/asyncapi/.github/blob/master/CODE_OF_CONDUCT.md"
target="_blank"
Expand All @@ -35,7 +35,7 @@ function Footer() {
<div>
</div>
<div className="flex items-center justify-between sm:flex-col sm:items-start">
<div className="flex flex-col justify-between items-start gap-2 w-[284px] sm:mt-6">
<div className="flex flex-col justify-between items-start gap-2 w-[284px] sm:items-center">
<div className="flex justify-between items-center gap-3">
{socials.map((social, index) => {
return (
Expand Down

0 comments on commit 71da2c4

Please sign in to comment.