mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-22 16:49:22 -05:00
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:
parent
a5c67b4f7f
commit
af2fcb188c
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@
|
|||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.demo-container button ~ button {
|
||||
.demo-container button + button {
|
||||
margin-left: 0.8rem;
|
||||
}
|
||||
|
||||
|
@ -134,4 +134,4 @@
|
|||
border-width: 2px;
|
||||
border-style: dashed;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue