Skip to content

Commit

Permalink
Resolve coderabbitai suggestions, breakpoints 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhi-MS committed Jan 28, 2025
1 parent eb81114 commit 2fbab76
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions docs/src/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,11 @@
--ifm-blockquote-font-size: 16px;
--ifm-table-head-color: var(--subtle);
--ifm-link-hover-decoration: none;

--breakpoint-mobile: 480px;
--breakpoint-tablet: 760px;
--breakpoint-desktop: 960px;
}

/* Navbar */
.navbar__brand {
color: var(--brand-color);
color: var(--brand);
font-size: 20px;
}

Expand Down Expand Up @@ -161,7 +157,7 @@
}

/* Media Queries */
@media only screen and (max-width: var(--breakpoint-tablet)) {
@media only screen and (max-width: 760px) {
.HeaderHero .title {
font-size: 60px;
}
Expand All @@ -171,7 +167,7 @@
}
}

@media only screen and (max-width: var(--breakpoint-mobile)) {
@media only screen and (max-width: 480px) {
.ActionButton {
max-width: 100%;
width: 100%;
Expand All @@ -190,7 +186,7 @@
}
}

@media only screen and (max-width: var(--breakpoint-desktop)) {
@media only screen and (max-width: 960px) {
.Section {
margin-bottom: 2rem;
padding-top: 1rem;
Expand Down

0 comments on commit 2fbab76

Please sign in to comment.