JSFiddle - React, Tailwind, and code Playground

by Aashish Handa

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Button Generator</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.css" />
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" />
    <link rel="stylesheet" type="text/css" href="assets/coloris.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Amita:wght@700&family=Lobster&family=Poppins:wght@500&family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
    <style>
        /* Button */
        /*.gxcpl-button {
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1.25px;
            text-transform: uppercase;
        }*/
        /* Select2 */
        .select2-selection--single,
        #select2-icon-container {
            height: 58px !important;
            border-color: #dee2e6 !important;
        }
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 70px;
            margin-left: 5px;
        }
        .select2-selection__arrow {
            top: 15px !important;
        }
        /* Color Picker */
        .square .clr-field button {
            width: 22px;
            height: 22px;
            left: 5px;
            right: auto;
            border-radius: 5px;
        }
        .square .clr-field input{
            padding-left: 36px;
        }
    </style>
</head>
<body>
    <div...