Skip to content

Commit

Permalink
Update _sponsor-corner.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTheMan827 authored Aug 9, 2024
1 parent 90ae65b commit 1ae1e1b
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions puck-ntag215-manager/src/style/_sponsor-corner.scss
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
@media only screen and (max-width: 1180px) {
body {
padding-bottom: 63px;
}
}

.sponsor-corner {
position: fixed;
bottom: 20px; /* Adjust as needed for spacing */
left: 20px; /* Adjust as needed for spacing */
width: 48px; /* Size of the circle */
height: 48px; /* Size of the circle */
bottom: 20px;
left: 20px;
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #db61a2bb; /* Hot pink with 70% opacity */
backdrop-filter: blur(8px); /* 8px blurred background */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
background-color: #db61a2bb;
backdrop-filter: blur(8px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.2s ease;

&:hover {
background-color: #db61a2; /* Solid hot pink on hover */
background-color: #db61a2;

svg {

fill: white;
fill: white;
}
}

Expand Down

0 comments on commit 1ae1e1b

Please sign in to comment.