Skip to content

Commit 54a89db

Browse files
Merge pull request #246 from mcctrix/master
Fixed UI on Mobile
2 parents 95be235 + 66b74af commit 54a89db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

components/faqs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const FAQs = () => {
1616
},
1717
q3: {
1818
qus: "What all components are there in this website",
19-
ans: 'There are a lot of components on this website, you can access them from <a href="/components" target="_blank" rel="noreferrer" class="text-blue-700">Here</a>',
19+
ans: 'There are lots of components such as Button, Form, Feature Card etc. which can save lot of time for a front end dev. you can access them from <a href="/components" target="_blank" rel="noreferrer" class="text-blue-700">Here</a>',
2020
},
2121
q4: {
2222
qus: "Can we play around with tailwindcss codes",

components/navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Navbar = () => {
1515
};
1616
const displayMenu = () => {
1717
if (isMenuOpen) {
18-
return "flex sm:hidden flex-col justify-center items-center ";
18+
return "flex sm:hidden flex-col justify-center items-center gap-2 my-2";
1919
} else {
2020
return "hidden";
2121
}

pages/components/badges.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Badge = () => {
1616
<Navbar />
1717
<div className="codepen_page font-poppins">
1818
<p className="codepen_brief bg-sky-200 text-blue-700 md:mx-44 mx-4 px-4 mb-12 text-center py-4 rounded-2xl">
19-
How cool is to have coloured and meaningfull badges near your image/
19+
How cool is to have coloured and meaningful badges near your image/
2020
cards/ testimonials. Sounds interesting, then why waiting to check
2121
inside 😎
2222
</p>

styles/components/navbar_style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ nav {
5454
@media (max-width: 900px) {
5555
.nav_links {
5656
padding: 12px;
57-
margin-bottom: 24px;
57+
/* margin-bottom: 24px; */
5858
}
5959
.nav_links:nth-child(1) {
60-
margin-top: 5vh;
60+
/* margin-top: 5vh; */
6161
}
6262
.nav_container {
6363
width: 96%;

0 commit comments

Comments
 (0)