Skip to content

Commit

Permalink
fix: hot fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sahas-01 committed Sep 15, 2023
1 parent 0371225 commit bc9d814
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Post/ActionsBar/ReportButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const ReportButton: FC<IReportButtonProps> = (props) => {
return (
<>
<button
className={`${type === 'comment' ? 'm-0 p-0' : ''} flex cursor-pointer items-center gap-x-[6px] border-none bg-transparent pr-1 shadow-none`}
className={`${type === 'comment' ? 'm-0 p-0' : ''} flex cursor-pointer items-center gap-x-[6px] border-none bg-transparent px-1 shadow-none`}
onClick={() => setShowModal(true)}
>
{isDeleteModal ? <DeleteOutlined className={`${className}`} /> : <FlagOutlined className={`${className}`} />}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Post/ActionsBar/TrackerButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const TrackerButton: FC<IDiscussionProps> = function ({ onchainId, proposalType

return (
<Button
className={'flex items-center border-none px-1 text-pink_primary shadow-none md:px-2'}
className={'flex items-center border-none px-1 text-pink_primary shadow-none md:pl-2 md:pr-1'}
onClick={handleTrack}
>
{tracked ? <EyeInvisibleOutlined /> : <EyeOutlined />}
Expand Down
2 changes: 1 addition & 1 deletion src/ui-components/CreationLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const CreationLabel: FC<ICreationLabelProps> = (props) => {
{topic && (
<div className='flex sm:-mt-0.5'>
{' '}
<span className='mr-2 mt-0.5 text-lightBlue'>in</span>{' '}
<span className='mr-2 mt-1 text-lightBlue'>in</span>{' '}
<TopicTag
topic={topic}
className={topic}
Expand Down
9 changes: 3 additions & 6 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
/* eslint-disable sort-keys */
module.exports = {
important: true,
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{jsx,tsx}'
],
content: ['./pages/**/*.{js,ts,jsx,tsx}', './src/**/*.{jsx,tsx}'],
theme: {
extend: {
fontFamily: {
Expand Down Expand Up @@ -43,10 +40,10 @@ module.exports = {
comment_bg: 'var(--comment_bg)'
},
screens: {
'xs': '320px'
xs: '320px'
},
borderRadius: {
'xxl': '0.875rem'
xxl: '0.875rem'
}
}
},
Expand Down

0 comments on commit bc9d814

Please sign in to comment.