Skip to content

Commit

Permalink
Fix margins on contribute and Ask a Question
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianGode committed Nov 6, 2024
1 parent 43284e6 commit 87a6830
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/HomepageAskAQuestion/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
border-radius: 2rem;
color: black;
overflow: hidden;
height: 100%;
}

html[data-theme='dark'] .item {
Expand All @@ -13,6 +14,13 @@ html[data-theme='dark'] .item {
border-radius: 2rem;
color: white;
overflow: hidden;
height: 100%;
}

@media (max-width: 996px) {
.item {
margin-top: 2rem;
}
}

.item__inner {
Expand Down
2 changes: 2 additions & 0 deletions src/components/HomepageContribute/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
border-radius: 2rem;
color: black;
overflow: hidden;
height: 100%;
}

html[data-theme='dark'] .item {
Expand All @@ -13,6 +14,7 @@ html[data-theme='dark'] .item {
border-radius: 2rem;
color: white;
overflow: hidden;
height: 100%;
}

.item__inner {
Expand Down

0 comments on commit 87a6830

Please sign in to comment.