Fix sizing of `<SelectControl>` & UI bug for `<ReportFilters>` (#42969)
Fix the style of select control components Set `box-sizing` to `border-box`, to prevent `<SelectControl>` from being wider than its container.
This commit is contained in:
parent
64a51caa06
commit
f35b6e2f9c
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix sizing of `<SelectControl>`.
|
|
@ -4,6 +4,7 @@
|
|||
.components-base-control {
|
||||
height: 56px;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
align-items: center;
|
||||
border: 1px solid $studio-gray-20;
|
||||
border-radius: 3px;
|
||||
|
|
Loading…
Reference in New Issue