Fix: correct button misalignment

Replaced the CSS selector `~` with `+` to ensure proper spacing between adjacent buttons. This adjustment targets only the immediate sibling buttons.
This commit is contained in:
Hector Candelaria 2024-07-18 00:04:57 -04:00
parent a5c67b4f7f
commit af2fcb188c

View file

@ -64,7 +64,7 @@
cursor: not-allowed;
}
.demo-container button ~ button {
.demo-container button + button {
margin-left: 0.8rem;
}