From a95c47ddba16591d2641578709554eeff8864622 Mon Sep 17 00:00:00 2001 From: mahdi Date: Sun, 8 May 2022 13:49:52 +0430 Subject: [PATCH] update src/components/Advertisement/Design1/index.js and tailwind.config.js --- src/components/Advertisement/Design1/index.js | 79 +++++++++---------- tailwind.config.js | 9 +-- 2 files changed, 38 insertions(+), 50 deletions(-) diff --git a/src/components/Advertisement/Design1/index.js b/src/components/Advertisement/Design1/index.js index 48ac1bd..0d348f7 100644 --- a/src/components/Advertisement/Design1/index.js +++ b/src/components/Advertisement/Design1/index.js @@ -2,50 +2,45 @@ import React from "react"; const AdvertisementDesign1 = () => { return ( -
+
-
-
-
-
-

تبلیغات دانوینی

-

- لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با - استفاده از طراحان گرافیک است. -

-
- + style={{ + width: "calc(100vw / 10)", + height: "calc(100vw / 10)", + left: "20%", + top: "15%", + }} + className="rounded-full absolute bg-blue-200 bg-opacity-30 backdrop-filter backdrop-blur-md z-30" + >
+
+
+
+

تبلیغات دانوینی

+

+ لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده + از طراحان گرافیک است. +

-
+ + ); }; diff --git a/tailwind.config.js b/tailwind.config.js index c5817e6..b066f19 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,5 @@ module.exports = { - purge: [ - "./src/**/*.{js,jsx,ts,tsx}", - "./public/index.html", - "./node_modules/flowbite/**/*.js", - ], + content: ["./pages/**/*.{html,js}", "./components/**/*.{html,js}"], darkMode: "class", // or 'media' or 'class' theme: { extend: { @@ -12,8 +8,5 @@ module.exports = { }, }, }, - variants: { - extend: {}, - }, plugins: [require("flowbite/plugin")], };