Skip to content

Commit

Permalink
remove comments and clean up css
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert committed Oct 4, 2024
1 parent 5d6adb1 commit 68189f1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 0 additions & 2 deletions apps/site/src/app/(home)/sections/Intro/Intro.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
@include bootstrap.media-breakpoint-up(sm) {
font-size: 2rem;
}
// margin-bottom: 0.5em;
}

.intro {
Expand All @@ -24,7 +23,6 @@
justify-content: center;
max-width: 90vw;
margin-top: 3vw;
// padding: 0 80px 0 80px;

@media screen and (min-width: 400px) {
margin-top: 12.5vw;
Expand Down
22 changes: 12 additions & 10 deletions apps/site/src/app/(home)/sections/Landing/ApplyButton.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
width: 45vw;
transition-duration: 200ms;

&:hover {
scale: 1.1;
}

@include bootstrap.media-breakpoint-up(sm) {
width: 35vw;
}
Expand All @@ -17,24 +21,22 @@
}
}

.apply:hover {
scale: 1.1;
}

.outline {
stroke: white;
transition: stroke 200ms ease-in-out;
}

svg:hover .outline {
stroke: yellow;
svg:hover {
.outline {
stroke: yellow;
}

.text {
fill: yellow;
}
}

.text {
fill: white;
transition: fill 200ms ease;
}

svg:hover .text {
fill: yellow;
}

0 comments on commit 68189f1

Please sign in to comment.