Skip to content

Commit

Permalink
fix: SCSS update conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
flozia committed Jan 9, 2025
1 parent fecb559 commit 1245bd4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
display: flex;
flex-direction: column;
align-items: center;
gap: $spacing-lg;
padding: $layout-md $spacing-md;
gap: tokens.$spacing-lg;
padding: tokens.$layout-md tokens.$spacing-md;

.waitlistTitle {
text-align: center;
font: $text-title-2xs;
font: tokens.$text-title-2xs;
font-weight: 600;
line-height: 1.4;
font-family: var(--font-inter);
color: $color-purple-70;
color: tokens.$color-purple-70;
}

a {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
display: flex;
align-items: center;
justify-content: space-between;
padding: tokens.$spacing-lg $token.layout-xl;
padding: tokens.$spacing-lg tokens.$layout-xl;
background-color: tokens.$color-white;
gap: tokens.$spacing-lg;

Expand All @@ -49,19 +49,19 @@
display: flex;

a {
color: token.$color-black;
color: tokens.$color-black;
text-decoration: none;
font-weight: 600;
padding: token.$spacing-sm $spacing-md;
padding: tokens.$spacing-sm tokens.$spacing-md;

&:hover {
background-color: token.$color-purple-70;
background-color: tokens.$color-purple-70;
text-decoration: underline;
}
}
}

@media screen and (max-width: token.$screen-xl) {
@media screen and (max-width: tokens.$screen-xl) {
display: none;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/(proper_react)/(redesign)/MobileShell.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
flex-direction: column;

ul {
border-bottom: 1px solid $color-grey-10;
border-bottom: 1px solid tokens.$color-grey-10;
list-style-type: none;
padding: 0;
width: 100%;
Expand Down

0 comments on commit 1245bd4

Please sign in to comment.