Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

docs: fix MDX example

the3ash 7cff0daa d9bd1bcd

+9 -2
+9 -2
src/components/examples/Tag.astro
··· 116 116 tagValue = '' 117 117 if (tagInput) tagInput.value = '' 118 118 updateConfirmButton() 119 - }, 300) 119 + }, 250) 120 120 } 121 121 122 122 // Update confirm button state ··· 195 195 display: flex; 196 196 align-items: center; 197 197 justify-content: center; 198 - transition: all 0.3s ease; 198 + transition: 199 + all 0.3s ease, 200 + visibility 0s; 199 201 position: absolute; 200 202 top: 50%; 201 203 left: 50%; 202 204 transform: translate(-50%, -50%) scale(1); 203 205 z-index: 1; 204 206 opacity: 1; 207 + visibility: visible; 205 208 } 206 209 207 210 .add-button.hidden { 208 211 opacity: 0; 209 212 transform: translate(-50%, -50%) scale(0.8); 210 213 pointer-events: none; 214 + visibility: hidden; 215 + transition: 216 + all 0.3s ease, 217 + visibility 0s 0.2s; 211 218 } 212 219 213 220 .add-icon,