Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed top margin for explore button #602

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Check this project [this](https://github.com/Clueless-Community/collegeAPI) here
- ## Flutter UI Components
A collection of flutter UI components

Click [here](https://github.com/Clueless-Community/flutter-ui-components) to check this amazing repository. All the changes and contributions are appreciated.
Click [here](https://github.com/Clueless-Community/Spectrum-UI) to check this amazing repository. All the changes and contributions are appreciated.

<h2 align='center'> Project maintainers </h2>
<table align='center'>
Expand Down
4 changes: 2 additions & 2 deletions components/home/ExploreProjects/ExploreProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ function ExploreProjects() {
repoURL: 'https://github.com/Clueless-Community/seamless-ui',
},
{
title: 'Flutter UI Components',
title: 'Spectrum UI',
tags: ['Flutter', 'Tailwind CSS'],
desc: 'A collection of flutter UI components',
repoURL: 'https://github.com/Clueless-Community/flutter-ui-components',
repoURL: 'https://github.com/Clueless-Community/Spectrum-UI',
},
];

Expand Down
5 changes: 4 additions & 1 deletion components/home/Tutorial Hell/tutorial_hell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ const TutorialHell = () => {
practical experience on the technology you are eyeing to master.
</h1>
</div>
<div className="xl:ml-[100px] mt-[10px] xl:mt-0">
<div
className="xl:ml-[100px] mt-[10px] xl:mt-0"
style={{ marginTop: '12%' }}
>
<Link href="/coming-soon" passHref>
<button className="text-[#7EE787] flex flex-row">
<h1 className="xl:text-[22px] text-[20px] font-extrabold">
Expand Down
Loading