Latest solutions
Todo list using Vite ReactJS , Tailwindcss, React-Beautiful-dnd.
#react#tailwind-css#viteSubmitted almost 2 years agoResponsive Newsletter Signup page using Reactjs and TailwindCss.
#react#react-router#tailwind-css#viteSubmitted almost 2 years ago
Latest comments
- @Wuczek@deep0133
Hey there, I noticed that the project's appearance could be improved on smaller screens, particularly those below 360px. To optimize the user experience on such screens, consider adding the following styles to the body: body { /* ... previous styles */ min-width: 360px; overflow: auto; }
- P@Oleksandr-Berd@deep0133
Hey 👋 There is an bug or issue. When I try to open it on small device and clicking on any planet it show 'PAGE NOT FOUND'. But it is working on desktop. Small changes may be required to resolve this..I am not able to understand typescript code otherwise I would try to help you to solve it.
Marked as helpful - @Ripra87@deep0133
Okay, it is my fault for not noticing the eval method in the code. You can forget the fourth point.
- @Ripra87@deep0133
Problem:
- Result Area Overflow if number Length>16
- when I enter (12/0.1 ) it give correct output (120) but after it if I press del key for clear screen and repeat the calculation then it concatenate the new output with previous output. eg - after clear the screen by del key : 12/0.1 => output: 120120. Solution:
- style : overflow: auto;
- use [eval] method for calculating the result. eg - eval("input_string")