Skip to content

Commit

Permalink
fix(footer>theme.ts): adding margin to right in footer links
Browse files Browse the repository at this point in the history
The link elements were not responsive because there was no default margin set. me-4 was added to
non-react footer but not in react footer.

themesberg#1085
  • Loading branch information
rajatpandey441 committed Nov 26, 2023
1 parent 2db498e commit 85e5ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const footerTheme: FlowbiteFooterTheme = {
groupLink: {
base: 'flex flex-wrap text-sm text-gray-500 dark:text-white',
link: {
base: 'last:mr-0 md:mr-6',
base: 'last:mr-0 md:mr-6 me-4',
href: 'hover:underline',
},
col: 'flex-col space-y-4',
Expand Down

0 comments on commit 85e5ac2

Please sign in to comment.