Skip to content

Commit

Permalink
style: use stylelint to format scss
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Oct 18, 2023
1 parent c673c32 commit d5b14d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/journey/Journey.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
img {
width: 405px;
height: 348.81px;
@media screen and (max-width: 1080px) {
@media screen and (width <= 1080px) {
width: 30vw;
height: 25.8vw;
}
Expand Down
7 changes: 4 additions & 3 deletions src/pages/journey/Section.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
transform: translate(-140px, -20px);

img {
@media screen and (max-width: 1080px) {
@media screen and (width <= 1080px) {
max-width: 244px;
max-height: 244px;
object-fit: contain;
}
@media screen and (max-width: 850px) {
@media screen and (width <= 850px) {
max-width: 224px;
max-height: 224px;
object-fit: contain;
}
@media screen and (max-width: 720px) {
@media screen and (width <= 720px) {
max-width: 184px;
max-height: 184px;
object-fit: contain;
Expand Down Expand Up @@ -72,6 +72,7 @@
background: linear-gradient(268deg, #1d61f0 0%, #18efb1 100%);
background-clip: text;
-webkit-text-fill-color: transparent;

svg {
color: #1d61f0;
}
Expand Down

0 comments on commit d5b14d9

Please sign in to comment.