Skip to content

Commit

Permalink
Fixed Copy Paste CSS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
officiallygod committed Dec 13, 2022
1 parent 7ba163f commit dbb24ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,19 @@
padding-right: 10px;
font-size: clamp(0.88rem, 0.45rem + 0.76vw, 1.13rem);
line-height: 1.6;
width: 390px;
}

.tab-img {
background-color: var(--nfd-onboarding-tertiary);
overflow: hidden;
}

.tab-img-base {
background-size: contain;
background-repeat: no-repeat;
width: 400px;
height: 228px;
animation-duration: 360ms;
width: clamp(180px, 50vw, 400px);
animation-timing-function: ease-out;
@media (prefers-reduced-motion) {
animation: none !important;
Expand Down Expand Up @@ -119,7 +120,7 @@
flex-direction: column;
align-items: center;
justify-content: space-around;
height: clamp(520px, 59vh, 800px);
height: clamp(560px, 59vh, 800px);
width: 100%;
padding-bottom: 10px;
}
Expand All @@ -139,6 +140,5 @@

.content-img, .design-img, .features-img {
max-height: 100px;
max-width: 180px;
}
}
8 changes: 3 additions & 5 deletions src/OnboardingSPA/pages/Steps/WhatNext/stylesheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
padding-right: 10px;
font-size: clamp(0.88rem, 0.45rem + 0.76vw, 1.13rem);
line-height: 1.6;
width: 390px;
}

.content-image {
Expand All @@ -90,9 +89,9 @@
.whatsnext-image {
background-size: contain;
background-repeat: no-repeat;
width: 400px;
height: 228px;
animation-duration: 360ms;
width: clamp(180px, 50vw, 400px);
animation-timing-function: ease-out;
@media (prefers-reduced-motion) {
animation: none !important;
Expand Down Expand Up @@ -123,7 +122,7 @@
flex-direction: column;
align-items: center;
justify-content: space-around;
height: clamp(520px, 59vh, 800px) !important;
height: clamp(600px, 59vh, 800px) !important;
width: 100%;
padding-bottom: 10px;
}
Expand All @@ -141,8 +140,7 @@
min-height: 10px;
}

.content-img, .design-img, .features-img {
.wpadmin-img, .help-img, .bluesky-img {
max-height: 100px;
max-width: 180px;
}
}

0 comments on commit dbb24ca

Please sign in to comment.