Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rayzhou-bit committed Mar 21, 2024
1 parent e00ba34 commit e3389ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/components/Canvas/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,21 @@ $spinner-base-measurement: 10em;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
padding: 50px;
border-radius: 20px;
border-radius: 10px;
background-color: #FAFCFF;
text-align: center;

.bar-container {
width: 250px;
height: 12px;
border-radius: 12px;
height: 10px;
border-radius: 20px;
overflow: hidden;
background-color: #DBE2EB;

.bar {
width: 100%;
height: 100%;
border-radius: 12px;
border-radius: 20px;
background-color: #363B4E;
animation: load 1.5s infinite linear;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Card/LibraryCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $round-radius: 12px;
.library-card {
box-sizing: content-box;
position: relative;
width: 98%;
width: 100%;
height: auto;
border-radius: $round-radius;
box-shadow: 2px 8px 3px #d7d6d6;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Card/hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import LibraryIcon from '../../assets/icons/library-icon.png';
import RedTrashIcon from '../../assets/icons/red-trash.png';

export const ANIMATION = {
cardBlink: 'card-blink .25s step-end 3 alternate',
libraryCardBlink: 'library-card-blink .25s step-end 3 alternate',
cardBlink: 'card-blink .25s step-end 4 alternate',
libraryCardBlink: 'library-card-blink .25s step-end 4 alternate',
};

export const useCardHooks = ({
Expand Down

0 comments on commit e3389ab

Please sign in to comment.