this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

blockquote and code styling

+17 -5
+16
src/assets/base.scss
··· 81 81 color: var(--color-text); 82 82 } 83 83 84 + p, 85 + blockquote { 86 + margin-bottom: 1rem; 87 + 88 + &:last-child { 89 + margin-bottom: 0; 90 + } 91 + } 92 + 84 93 h1, 85 94 h2, 86 95 h3, ··· 109 118 110 119 code { 111 120 font-family: var(--code-font-family); 121 + font-size: 16px; 122 + } 123 + 124 + blockquote { 125 + padding: 2rem; 126 + border-radius: 0.3em; 127 + background-color: #574b90; 112 128 }
+1 -1
src/components/architecture/crc-card.vue
··· 41 41 background-color: #561b00; 42 42 padding: 1rem; 43 43 margin: 1rem 0; 44 - border-radius: 15px; 44 + border-radius: 0.3em; 45 45 font-family: var(--code-font-family); 46 46 47 47 hr {
-4
src/layouts/post.vue
··· 40 40 margin-bottom: 0.5rem; 41 41 } 42 42 43 - p { 44 - margin-bottom: 1rem; 45 - } 46 - 47 43 img { 48 44 width: 100%; 49 45 max-height: 40vh;