Fix responsive issues (mainly Safari)

This commit is contained in:
2022-07-12 13:15:24 +02:00
parent b814433fc2
commit 3c636d9859
4 changed files with 12 additions and 5 deletions

View File

@@ -9,13 +9,14 @@
:global(button) {
overflow: visible;
padding: 0;
}
// Icon
:global(svg) {
display: block;
width: min(65%, 27px);
height: min(65%, 27px);
width: min(65%, 22px);
height: min(65%, 22px);
margin-top: -3px;
color: #fff;
}

View File

@@ -3,12 +3,13 @@
overflow: hidden;
border-radius: 6px;
background: $color-primary-tertiary20;
transform: translateZ(0);
// Slides
&__slides {
display: flex;
}
& :global(picture) {
:global(picture) {
position: relative;
flex: 0 0 100%;
color: $color-text;
@@ -58,6 +59,7 @@
padding: 0;
overflow: hidden;
box-shadow: 0 1px 1px $color-shadow, 0 2px 2px $color-shadow;
transform: translateZ(0);
&:after {
content: "";

View File

@@ -6,7 +6,7 @@
color: $color-tertiary;
text-align: center;
@include bp (sm) {
@include bp (md) {
margin: 160px 0;
}

View File

@@ -1,8 +1,11 @@
:global(.homepage) {
overflow: hidden;
}
// Homepage
.homepage {
// Intro Section
&__intro {
overflow: hidden;
padding-bottom: calc(96px + 20vw);
background: linear-gradient(180deg, $color-tertiary 85%, $color-primary 100%), $color-tertiary;
color: $color-text;
@@ -81,6 +84,7 @@
// Photos Collage
&__photos {
position: relative;
width: 100%;
max-width: 2000px;
margin: calc(-1 * 96px - 4vw) 0 80px;