Skip to content

Commit

Permalink
FAQ FIx
Browse files Browse the repository at this point in the history
Signed-off-by: Kipruto <[email protected]>
  • Loading branch information
kelvinkipruto committed Nov 20, 2023
1 parent e4a0693 commit d6212d2
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 4 deletions.
150 changes: 149 additions & 1 deletion wp-content/themes/academyAfrica/assets/css/dist/widgets/faq.css

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

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

32 changes: 30 additions & 2 deletions wp-content/themes/academyAfrica/assets/css/src/widgets/faq.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,37 @@
.faq-list {
padding: 20px;
@use "../abstracts/" as *;


.faq-list {
padding: 80px 16px;
.title {
display: flex;
justify-content: start;

.cfa-title {
font-size: 40px;
line-height: 48px;

&::after {
left: unset;
transform: unset;
}
}
}

@include media-breakpoint-up(tablet) {
padding: 80px 24px;
}

@include media-breakpoint-up(desktop) {
padding: 80px 60px;
}

@include media-breakpoint-up(large) {
padding: 80px 148px;
}

@include media-breakpoint-up(xlarge) {
padding: 80px 388px;
}

}

0 comments on commit d6212d2

Please sign in to comment.