Skip to content

Commit

Permalink
FIX: css, official margin when mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonSeong-Lee committed Apr 27, 2023
1 parent b78f31c commit 43522bd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/component/Benefit/Benefits.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@
flex-direction: row;
justify-content: space-between;
margin: 0;
margin-left: 0.42rem;
margin-right: 0.42rem;
margin-left: 1rem;
margin-right: 1rem;
color: black;
}
Expand Down Expand Up @@ -295,7 +295,6 @@
outline: max(2px, 0.1rem) solid rgb(10, 115, 66);
}
:global(.show) {
opacity: 0.9 !important;
}
Expand All @@ -305,4 +304,10 @@
text-underline-offset: 0.2rem !important;
text-decoration-thickness: 0.1rem !important;
}
@media (max-width: 768px) {
.category {
margin: 0.42rem;
}
}
</style>

0 comments on commit 43522bd

Please sign in to comment.