[add]: tailwind-complete

This commit is contained in:
rahuldkjain
2020-09-04 21:16:18 +05:30
parent 1f03dca892
commit 1b866474b9
14 changed files with 244 additions and 154 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import React from 'react';
const Subtitle = (props) => {
return (
<div className="flex justify-center items-start flex-col w-full px-2 sm:px-6 mb-4">
<div className="flex justify-center items-start flex-col w-full px-2 sm:px-6 mb-10">
<div className="text-xl sm:text-2xl font-bold font-title mt-2 mb-2">Subtitle</div>
<input id="subtitle" className="w-full text-xs sm:text-lg sm:w-1/2 border-t-0 border-l-0 border-r-0 border solid border-gray-900 py-1 px-2 focus:border-blue-700" value={props.data.subtitle}
onChange={event => props.handleDataChange('subtitle', event)} />