This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//check if the string is empty of not | |
const isEmpty = (string) => { | |
if (string.trim() === "") return true; | |
else return false; | |
}; | |
//CSS Media queries | |
// @media only screen and (max-width: 320px) {} | |
// @media only screen and (min-width: 480px) {} | |
// @media only screen and (min-width: 768px) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddList:{ | |
display: 'flex', | |
} | |
floatingButtonWrap:{ | |
display: 'flex', | |
} | |
card: { | |
display: 'flex', | |
justifyContent: 'space-between', | |
'& $AddList': { |