Skip to content

Commit

Permalink
fix(Styling): Remove background
Browse files Browse the repository at this point in the history
  • Loading branch information
kalecream committed Oct 8, 2023
1 parent 2a7848c commit 361907b
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions frontend/src/styles/modules/Errors.module.scss
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
@import '@styles/mediaQuery';

.container {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-image: var(--loadingBackground);

& a {
color: var(--textColor);
}


@include breakpoint-range($from: mobile, $to: desktopSmall) {
@include breakpoint-range($from: mobile) {
flex-wrap: wrap;
}
}
Expand All @@ -29,7 +25,7 @@
width: 100%;
height: 100%;
font-weight: 900;
// letter-spacing: 1rem;
letter-spacing: 1rem;
text-align: center;
color: transparent;
-webkit-text-fill-color: transparent;
Expand Down Expand Up @@ -64,12 +60,12 @@
}

.error__description {
margin-top: 0.2rem;
margin-top: 0.2rem;
color: var(--textColor);
}

.error_description_container {
width: 50%;
width: 50%;
display: flex;
flex-direction: column;
place-items: center;
Expand All @@ -87,16 +83,8 @@ width: 50%;
background-position: calc(100px * -1) 0;
}
}
@keyframes stripeBackgroundPosition {
0% {
background-position: 0 0;
}
100% {
background-position: calc(100px * -1) 0;
}
}

@keyframes stripeTransform {
@keyframes stripeTransform {
0% {
transform: translateX(0);
}
Expand Down

0 comments on commit 361907b

Please sign in to comment.