style(App.css): add overflow: hidden to body to prevent horizontal scrolling

style(App.css): remove unnecessary auto values for width, height, and border-radius in .react-flow__node class
This commit is contained in:
cristhianzl 2024-01-11 17:48:11 -03:00
commit 2986741e61

View file

@ -2,15 +2,19 @@
@tailwind components;
@tailwind utilities;
body {
overflow: hidden;
}
.App {
text-align: center;
}
.react-flow__node {
width: auto;
height: auto;
border-radius: auto;
min-width: inherit;
width: auto;
height: auto;
border-radius: auto;
min-width: inherit;
}
.App-logo {