Skip to content

Commit

Permalink
fix(style): update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed Nov 20, 2024
1 parent c5ea651 commit 5292260
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
6 changes: 3 additions & 3 deletions client/src/components/graphs/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
align-items: center;
height: 100vh;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.4);
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(62, 111, 225, 0.4);
animation: neon-glow 1.5s ease-in-out infinite alternate;
}

@keyframes neon-glow {
from {
box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.4);
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(17, 0, 255, 0.4);
}
to {
box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6);
box-shadow: 0 0 30px rgba(62, 111, 225, 0.6), 0 0 60px rgba(17, 0, 255, 0.4);
}
}

Expand Down
9 changes: 9 additions & 0 deletions client/src/pages/home/components/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,12 @@
background-color: yellow;
font-weight: bold;
}
.loading-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
border-radius: 10px;
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(62, 111, 225, 0.4);
animation: neon-glow 1.5s ease-in-out infinite alternate;
}
3 changes: 0 additions & 3 deletions client/src/pages/last-mails-sent/components/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,4 @@
display: inline-block;
margin-left: 0.5rem;
}
.test {
background-color: red;
}
}
9 changes: 9 additions & 0 deletions client/src/pages/stats/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,12 @@
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.loading-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
border-radius: 10px;
box-shadow: 0 0 20px rgba(62, 111, 225, 0.6), 0 0 50px rgba(62, 111, 225, 0.4);
animation: neon-glow 1.5s ease-in-out infinite alternate;
}

0 comments on commit 5292260

Please sign in to comment.