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:
parent
60445d3af0
commit
2986741e61
1 changed files with 8 additions and 4 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue