Fix SearchField CSS selector to use lowercase data attribute
The useDefinition hook renders data attributes in lowercase, so the CSS selector `[data-startCollapsed]` no longer matched. Updated to `[data-startcollapsed]` to restore collapsed state styling. Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
&[data-startCollapsed='true'] {
|
||||
&[data-startcollapsed='true'] {
|
||||
transition: flex-basis 0.3s ease-in-out, width 0.3s ease-in-out,
|
||||
max-width 0.3s ease-in-out;
|
||||
padding: 0;
|
||||
|
||||
Reference in New Issue
Block a user