feat: migrate styles to TailwindCSS

This commit is contained in:
doprz
2024-03-06 13:39:53 -06:00
parent 4dc8957c45
commit 7e2f5eaed7
3 changed files with 17 additions and 24 deletions

View File

@@ -1,5 +1,4 @@
import React from 'react';
import styles from './CalendarGridCell.module.scss';
/**
* Component representing each 1 hour time block of a calendar
@@ -7,10 +6,8 @@ import styles from './CalendarGridCell.module.scss';
*/
const CalendarCell: React.FC = (props) => {
return (
<div className={styles.calendarCell}>
<div className={styles.hourLine}>
</div>
<div className="flex w-56 h-12 min-w-12 min-h-10 flex-col justify-center items-start border border-gray-300">
<div className="w-full h-1 border-none rounded-none bg-gray-300 bg-opacity-25"></div>
</div>
);
};