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:
Tomek Wytrębowicz 2024-01-02 22:42:19 +01:00 committed by GitHub
parent 64a51caa06
commit f35b6e2f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix sizing of `<SelectControl>`.

View File

@ -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;