Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
style(page): tint the image
Browse files Browse the repository at this point in the history
close #1108
  • Loading branch information
lemredd committed Dec 9, 2022
1 parent d5bc591 commit 67b9194
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/user/log_in.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,17 @@ body {
height: 100vh;
.image {
$imageURL: url("/api/user/log_in/image");
$redTint: hue-rotate(300deg);
content: '';
position: fixed;
inset: 0;
background-image: url("/api/user/log_in/image");
background-image: $imageURL;
background-repeat: no-repeat;
background-size: cover;
filter: sepia(100%) saturate(200%) brightness(80%) $redTint;
}
}
Expand Down

0 comments on commit 67b9194

Please sign in to comment.