Skip to content

Commit

Permalink
small frontend fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kuco23 committed Jun 9, 2024
1 parent 04b2bf4 commit bccc77a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 6 additions & 1 deletion packages/frontend/src/css/config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,9 @@ $blockquote-color: #ccc;

/* social icons */
$social-icon-color: #777;
$social-icon-hover-color: FireBrick;
$social-icon-hover-color: FireBrick;

/* underlining */
$underline-color: firebrick;
$underline-duration: 2s;
$underline-delay: 0.75s;
7 changes: 3 additions & 4 deletions packages/frontend/src/css/kucocoin-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
height: 100%;
padding: $kucocoin-stages-content-padding;
background-color: $kucocoin-stages-content-background;
backdrop-filter: invert(1);

> div {
display: none;
Expand Down Expand Up @@ -323,10 +322,10 @@ blockquote.ancient:after {
left: 0;
width: 0%;
height: 100%;
background-color: FireBrick;
background-color: $underline-color;
z-index: -1;
animation: underline 2s forwards;
animation-delay: 0.75s;
animation: underline $underline-duration forwards;
animation-delay: $underline-delay;
}

@keyframes underline {
Expand Down

0 comments on commit bccc77a

Please sign in to comment.