Skip to content

Commit

Permalink
Merge pull request #39 from ituk-ttu/synnipaev-react
Browse files Browse the repository at this point in the history
Fixing mobile text size
  • Loading branch information
AlacrisDevs authored Jan 26, 2025
2 parents 7a62816 + 8468f4d commit b2d2afe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/[locale]/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ button {

@media screen and (max-width: 639px) {
h1 {
font-size: 2.25rem;
font-size: 2.125rem;
}

h2 {
Expand Down
2 changes: 1 addition & 1 deletion src/app/[locale]/partnerlus/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function Home() {
</div>

<div className="main-padding items-center flex-col flex gap-16">
<h2 className="text-center break-all">{dictionary.studentorgs}</h2>
<h2 className="text-center">{dictionary.studentorgs}</h2>
<div className="grid min-w-full grid-cols-1 gap-8 xs:grid-cols-2 lg:grid-cols-4">
{studentOrgs.map((partner, index) => (
<Card key={index} link={partner.link} title={currentLocale === "en" ? partner.en_name : partner.name} image={partner.imagePath} listItems={partner.projects} type="list" />
Expand Down

0 comments on commit b2d2afe

Please sign in to comment.