浏览代码

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 年之前
父节点
当前提交
63a520d052
共有 1 个文件被更改,包括 2 次插入2 次删除
  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>