Skip to content

Commit

Permalink
fix: tailwind constants
Browse files Browse the repository at this point in the history
  • Loading branch information
avlyalin committed Jun 1, 2020
1 parent 291ea62 commit fc2bee7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/winners/line.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Line = ({ content, position }) => {
return (
<div
className={classnames(
'h-9 md:h-11 lg:h-13 xl:h-15',
'h-7 md:h-11 lg:h-13 xl:h-15',
'py-4 md:py-5 lg:py-6',
'flex items-center flex-grow w-20',
'relative',
Expand Down
6 changes: 4 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,16 @@ module.exports = {
'1/2': '50%',
},
width: {
'9': '1.75rem',
'7': '1.75rem',
'9': '2.25rem',
'11': '2.75rem',
'13': '3.25rem',
'15': '3.75rem',
'screen-h': '100vh',
},
height: {
'9': '1.75rem',
'7': '1.75rem',
'9': '2.25rem',
'11': '2.75rem',
'13': '3.25rem',
'15': '3.75rem',
Expand Down

0 comments on commit fc2bee7

Please sign in to comment.