Skip to content

Commit

Permalink
fix: quill issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
agrim-deriv committed Sep 27, 2024
1 parent 58a5de7 commit 64af7b4
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 10 deletions.
8 changes: 0 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/features/Apiexplorer/Schema/Schema.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
opacity: 0;
color: var(--ifm-color-secondary-darkest);
font-family: lucida console, Monaco, monospace;
font-size: 15.2px !important;
padding: rem(0.2);
position: absolute;
right: rem(0.3);
Expand Down
1 change: 1 addition & 0 deletions src/features/Home/ApiFeatures/ApiFeatures.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@use 'src/styles/utility' as *;
.FeaturesContainer {
font-family: var(--ibm-font-family-base);
display: flex;
width: 100%;
align-items: center;
Expand Down
1 change: 1 addition & 0 deletions src/features/Home/Benefits/Benefits.module.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@use 'src/styles/utility' as *;

.BenefitsContainer {
font-family: var(--ibm-font-family-base);
width: 100%;

.Heading {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
padding: 0 rem(2);
}
.SubText {
font-family: var(--ibm-font-family-base);
text-align: center;
font-size: rem(2.4);
font-weight: 400;
Expand Down
1 change: 1 addition & 0 deletions src/features/Home/GetStarted/GetStarted.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
justify-content: center;

.columnContainer {
font-family: var(--ibm-font-family-base);
display: flex;
flex-direction: column;
flex-wrap: nowrap;
Expand Down
2 changes: 1 addition & 1 deletion src/features/Home/HeroHeader/HeroHeader.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
.SubHeading {
color: var(--ifm-color-white);
font-weight: 400;

font-family: var(--ibm-font-family-base);
@media screen and (max-width: 992px) {
text-align: center;
font-size: rem(1.6);
Expand Down
1 change: 1 addition & 0 deletions src/features/Home/WaysToEarn/WaysToEarn.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
}

.WaysWrapper {
font-family: var(--ibm-font-family-base);
width: 80%;
display: flex;
flex-wrap: wrap;
Expand Down
15 changes: 14 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
}

html {
font-family: var(--ibm-font-family-base);
font: var(--ifm-font-size-base) / var(--ifm-line-height-base) var(--ifm-font-family-base) !important;
}

h1,
Expand Down Expand Up @@ -152,6 +152,15 @@ a {
}
}

.codeBlockContent {
font-size: 15.2px;
font-family: var(--ibm-font-family-base);
}

code {
font-size: 15.2px !important;
}

p,
h1,
h2,
Expand Down Expand Up @@ -518,6 +527,10 @@ main[class*='docMainContainer'] .container {
margin-top: rem(9);
}

.theme-doc-markdown {
font-family: var(--ibm-font-family-base);
}

.menu__link {
font-size: rem(1.4);
font-weight: var(--ifm-font-weight-normal);
Expand Down

0 comments on commit 64af7b4

Please sign in to comment.