Skip to content

Commit 5e4364f

Browse files
Merge pull request #10 from PrathameshDhande22/bug_search_btn
Changed Some CSS like for Navbar Title, Navbar Components Reversed on Mobile Screen
2 parents fb79dd8 + e3cc844 commit 5e4364f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

quartz/components/styles/navbar.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
gap: 10px;
3030
}
3131

32-
@media all and (max-width:475px){
32+
@media all and (max-width:360px){
3333
justify-content: center;
3434
margin-bottom: 6px;
3535
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
@use "../../styles/variables.scss" as *;
2+
13
.navbar-wrapper {
24
display: flex;
35
align-items: center;
46
justify-content: center;
57
gap: 10px;
8+
9+
@media all and ($mobile) {
10+
flex-direction: row-reverse;
11+
}
612
}

quartz/styles/custom.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ ul.overflow > li:last-of-type {
1717

1818
.page-title {
1919
@media all and ($mobile) {
20-
font-size: 1.5rem;
20+
font-size: 1.2rem;
21+
}
22+
}
23+
24+
.search .search-button > p {
25+
@media all and ($mobile) {
26+
display: none;
2127
}
2228
}

0 commit comments

Comments
 (0)