feat: add git cheatsheet.

This commit is contained in:
jaywcjlove
2022-09-28 00:52:28 +08:00
parent 69f536eb33
commit 3cf40a13de
4 changed files with 556 additions and 1 deletions

View File

@ -425,12 +425,22 @@ pre {
.col-span-3 {
grid-column: span 3/span 3;
}
.col-span-4 {
grid-column: span 4/span 4;
}
.row-span-2 {
grid-row: span 2/span 2;
}
.row-span-3 {
grid-row: span 3/span 3;
}
.row-span-4 {
grid-row: span 4/span 4;
}
.wrap {
white-space: pre-wrap !important;
overflow-wrap: break-word !important;
}
[data-color-mode*='light'], [data-color-mode*='light'] body {
--color-prettylights-syntax-comment: #6e7781;
@ -598,4 +608,5 @@ pre {
margin-top: 3.5rem;
color: rgb(100 116 139/1);
background-color: rgb(30 41 59/1);
text-align: center;
}