Skip to content

Commit

Permalink
fix: Resolve issue with missing file uploads due to .gitignore settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ohprettyhak committed Nov 11, 2024
1 parent 91460b8 commit c7fc489
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ dist
*.asp
*.cer
*.csr
*.css
*.htm
*.html
*.jsp
Expand Down
44 changes: 44 additions & 0 deletions plugins/gatsby-remark-codeblock/toast.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.codeblock-copy-toast {
position: fixed;
bottom: 24px;
left: 0;
right: 0;

display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}

@keyframes fade-in-and-out {
0% {
opacity: 0;
transform: translateY(4px);
}
16% {
opacity: 1;
transform: none;
}
84% {
opacity: 1;
transform: none;
}
100% {
opacity: 0;
transform: translateY(4px);
}
}

.codeblock-copy-toast-message {
padding-block: 12px;
padding-inline: 36px;
border-radius: 8px;

color: white;
font-family: "Roboto Mono", "Pretendard Variable", "Courier New", Courier, monospace;
font-size: 15px;

background-color: #7995AD;
animation: fade-in-and-out 2s both;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

0 comments on commit c7fc489

Please sign in to comment.