From d87599c648cdfffe7548c83b3b319b43e0ccceae Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Wed, 11 Jun 2025 09:48:06 -0700 Subject: [PATCH] Updated README.md --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ae6540..3d7b690 100644 --- a/README.md +++ b/README.md @@ -104,15 +104,27 @@ https://github.com/user-attachments/assets/7a492f89-9c82-4038-a07a-a9a59e4f8eef
- 4. Enable extra buttons when hovering over cards on desktop + 4. Enable extra overlay buttons on cards on desktop -- To enable 'Mark Played' and 'Add to Favorites' buttons at the bottom right corner of cards, copy and paste the following code at the end in Custom CSS box, click save and finally refresh your app/webpage. +- To enable 'Mark Played' and 'Add to Favorites' buttons that show up at the bottom right corner of cards while hovering, copy and paste the following code at the end in Custom CSS box, click save and finally refresh your app/webpage. ``` :root{ --extraCardButtonsVisibility: block; } ``` -- To disable them again, simply remove this code block or replace `block` with `none`. +- To hide them again, simply remove this code block or replace `block` with `none`. +
+ +
+ 5. Place the overlay play button at the center of cards on desktop + +- To bring the mini play button to the center of cards, copy and paste the following code at the end in Custom CSS box, click save and finally refresh your app/webpage. + ``` + :root{ + --overlayPlayButtonPosition: 50%; + } + ``` +- To undo this change, simply remove this code block or replace `50%` with `2.8em`.