We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee5794 commit 42008f2Copy full SHA for 42008f2
1 file changed
_sass/_base.scss
@@ -207,6 +207,28 @@ ul.task-list input[type="checkbox"] {
207
}
208
209
210
+/* About profile image hover swap */
211
+.profile-hover-swap{
212
+ position: relative;
213
+ display: inline-block;
214
+}
215
+
216
+.profile-hover-swap .hover-img{
217
+ position: absolute;
218
+ inset: 0;
219
+ opacity: 0;
220
+ transition: opacity 200ms ease-in-out;
221
222
223
+.profile-hover-swap:hover .hover-img{
224
+ opacity: 1;
225
226
227
+.profile-hover-swap figure{
228
+ margin: 0;
229
230
+/* figure.liquid가 figure 마진을 주는 경우 대비 (있으면 점프/어긋남 방지) */
231
232
.profile.float-right {
233
margin-left: 1rem;
234
0 commit comments