Browse Source

Change interactive visualization button text color (Morph plugin docs) (#2535)

* Change interactive visualization button text color

The button text is not visible so changing it's color to black.

* Update morph.md

Co-authored-by: Caleb Porzio <calebporzio@gmail.com>
Sumanyu Aggarwal 3 năm trước cách đây
mục cha
commit
63a520d052
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      packages/docs/src/en/plugins/morph.md

+ 2 - 2
packages/docs/src/en/plugins/morph.md

@@ -21,10 +21,10 @@ The best way to understand its purpose is with the following interactive visuali
 
     <div class="flex w-full justify-between" style="padding-bottom: 1rem">
         <div class="w-1/2 px-4">
-            <button @click="slide = (slide === 1) ? 13 : slide - 1" class="w-full bg-brand rounded-full text-center py-3 font-bold text-white">Previous</button>
+            <button @click="slide = (slide === 1) ? 13 : slide - 1" class="w-full bg-aqua-400 rounded-full text-center py-3 font-bold text-white">Previous</button>
         </div>
         <div class="w-1/2 px-4">
-            <button @click="slide = (slide % 13) + 1" class="w-full bg-brand rounded-full text-center py-3 font-bold text-white">Next</button>
+            <button @click="slide = (slide % 13) + 1" class="w-full bg-aqua-400 rounded-full text-center py-3 font-bold text-white">Next</button>
         </div>
     </div>
 </div>