fix: convert px to rem

This commit is contained in:
2025-06-05 11:31:49 +03:00
parent 0ba1538520
commit 6c653aa196
13 changed files with 160 additions and 139 deletions

View File

@@ -1,16 +1,16 @@
.Footer {
background-color: #1B1B25;
padding: 80px 160px;
padding: rem(80px) rem(160px);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 20px;
gap: rem(20px);
.Block{
.Block {
display: flex;
flex-direction: column;
gap: 20px;
gap: rem(20px);
max-width: 40vw;
}
@@ -22,25 +22,25 @@
.Header {
font-family: $font-open-sans;
font-weight: $font-semi-bold;
font-size: 60px;
font-size: rem(60px);
line-height: 100%;
color: $color-white;
margin-bottom: 40px;
margin-bottom: rem(40px);
}
.Bottom {
width: 100%;
height: 80px;
height: rem(80px);
border-top: 1px solid $color-white;
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
gap: rem(20px);
.Policy {
font-family: $font-open-sans;
font-weight: $font-regular;
font-size: 16px;
font-size: rem(16px);
line-height: 100%;
color: $color-white;
margin-left: auto;