fix: add right margin to grid container in topics, authors, and affiliations sections
The changes were made to add a right margin to the grid container in the topics, authors, and affiliations sections. This was done to improve the spacing and layout of the items within the grid.
This commit is contained in:
parent
65c6545e3a
commit
3f4b6c1b9f
3 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ const Page = () => {
|
||||||
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
||||||
Affiliations
|
Affiliations
|
||||||
</h1>
|
</h1>
|
||||||
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4'>
|
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mr-8'>
|
||||||
{allAffiliations.map((affiliationShortName) => {
|
{allAffiliations.map((affiliationShortName) => {
|
||||||
const { name, short } = affiliations[affiliationShortName]
|
const { name, short } = affiliations[affiliationShortName]
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -74,7 +74,7 @@ const Page = () => {
|
||||||
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
||||||
Authors
|
Authors
|
||||||
</h1>
|
</h1>
|
||||||
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4'>
|
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mr-8'>
|
||||||
{sortedAuthors.map((entry) => {
|
{sortedAuthors.map((entry) => {
|
||||||
return (
|
return (
|
||||||
<Fragment key={entry[0]}>
|
<Fragment key={entry[0]}>
|
||||||
|
|
|
@ -52,7 +52,7 @@ const Page = () => {
|
||||||
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
<h1 className={`${zillaSlab.className} text-6xl text-center mb-10`}>
|
||||||
Topics
|
Topics
|
||||||
</h1>
|
</h1>
|
||||||
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4'>
|
<div className='grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mr-8'>
|
||||||
{sortedTopics.map((entry) => {
|
{sortedTopics.map((entry) => {
|
||||||
return (
|
return (
|
||||||
<Fragment key={entry[0]}>
|
<Fragment key={entry[0]}>
|
||||||
|
|
Loading…
Reference in a new issue