0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00

Remove shadow

This commit is contained in:
yude 2021-05-30 11:30:22 +09:00
parent e7d9336a3d
commit c8c40d1257
Signed by: yude
GPG Key ID: EB0FE5D925C4A968
2 changed files with 2 additions and 4 deletions

View File

@ -84,7 +84,6 @@ export default function Modal() {
</div> </div>
</div> </div>
</div> </div>
<div className="opacity-25 fixed inset-0 z-40 bg-black"></div>
</> </>
) : null} ) : null}
</> </>

View File

@ -13,7 +13,7 @@ export default function Modal() {
return ( return (
<> <>
<button <button
className="bg-pink-600 text-white active:bg-pink-600 font-bold text-sm px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150" className="bg-pink-600 text-white active:bg-pink-600 font-bold text-sm px-6 py-3 rounded hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
type="button" type="button"
onClick={() => setShowModal(true)} onClick={() => setShowModal(true)}
> >
@ -34,7 +34,7 @@ export default function Modal() {
{/* Modal footer for close button */} {/* Modal footer for close button */}
<div className="flex items-center justify-end p-6 border-t border-solid border-blueGray-200 rounded-b"> <div className="flex items-center justify-end p-6 border-t border-solid border-blueGray-200 rounded-b">
<button <button
className="text-red-500 background-transparent font-bold uppercase px-6 py-2 text-sm outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150" className="text-red-500 font-bold uppercase px-6 py-2 text-sm outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
type="button" type="button"
onClick={() => setShowModal(false)} onClick={() => setShowModal(false)}
> >
@ -44,7 +44,6 @@ export default function Modal() {
</div> </div>
</div> </div>
</div> </div>
<div className="opacity-25 fixed inset-0 z-40 bg-black"></div>
</> </>
) : null} ) : null}
</> </>