feat: begin adding copy function to code component

This commit is contained in:
Stevan Freeborn
2023-04-09 15:23:13 -05:00
parent 4c6257012d
commit 85e7934c05
7 changed files with 68 additions and 11 deletions
+21
View File
@@ -0,0 +1,21 @@
.snippetContainer {
border-radius: 10px;
background-color: #0b3766;
margin-top: 1rem;
width: 100%;
}
.snippetHeader {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #194488;
padding: 0.5rem 1rem;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-size: 0.8rem;
}
.snippetContent {
padding: 0.5rem 1rem;
}