Compare commits

...

2 Commits

Author SHA1 Message Date
rodude123 6cfea3fc98 Merge pull request 'fixed mobile view of menubar, search page and category page' (#49) from search-fix into master
🚀 Deploy website on push / 🎉 Deploy (push) Successful in 18s
Reviewed-on: #49
2023-11-08 22:24:43 +00:00
rodude123 d8a7901574 fixed mobile view of menubar, search page and category page
🚀 Deploy website on push / 🎉 Deploy (push) Failing after 0s
Signed-off-by: rodude123 <rodude123@gmail.com>
2023-11-06 19:37:26 +00:00
2 changed files with 17 additions and 1 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+16
View File
@@ -29,6 +29,17 @@
@media screen and (max-width: 75em) { @media screen and (max-width: 75em) {
/***** Menu bar ***/
div.menuBar .menu ul {
flex-direction: column;
align-items: center;
padding-left: 1.25em;
}
div.menuBar .menu ul li input[type="search"] {
width: 100%;
}
/*** Large Post for Home and Category ***/ /*** Large Post for Home and Category ***/
section.largePost { section.largePost {
padding: 1em; padding: 1em;
@@ -99,6 +110,11 @@
border-right: none; border-right: none;
} }
/***** Categories and Search Pages ***/
main > h1 {
padding-left: 1em;
}
} }
@media screen and (max-width: 55em) { @media screen and (max-width: 55em) {