Skip to content

Commit

Permalink
remove clamp
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert committed Oct 3, 2024
1 parent 862e781 commit 1847562
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/site/src/app/(home)/sections/Landing/Title.module.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@use "bootstrap-utils" as bootstrap;

.title {
width: clamp(0px, 70vw, 70vw);
height: clamp(0px, 25.42vw, 25.42vw);
width: 70vw;
height: 25.42vw;

@include bootstrap.media-breakpoint-up(md) {
width: clamp(0px, 40vw, 40vw);
height: clamp(0px, 14.53vw, 14.53vw);
width: 40vw;
height: 14.53vw;
}
}

0 comments on commit 1847562

Please sign in to comment.