Skip to content

Commit 893cf42

Browse files
committed
RI-7594: fix query card header alignment issues
1 parent b0aa5ba commit 893cf42

File tree

3 files changed

+184
-224
lines changed

3 files changed

+184
-224
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import styled from 'styled-components'
2+
import { RiSelect } from 'uiSrc/components/base/forms/select/RiSelect'
3+
4+
export const ProfileSelect = styled(RiSelect)`
5+
border: none;
6+
background-color: inherit;
7+
//color: var(--iconsDefaultColor);
8+
width: 46px;
9+
padding: inherit;
10+
11+
&.profiler {
12+
min-width: 50px;
13+
}
14+
15+
&.toggle-view {
16+
min-width: 40px;
17+
}
18+
19+
& ~ div {
20+
right: 0;
21+
22+
svg {
23+
width: 10px;
24+
height: 10px;
25+
}
26+
}
27+
`

0 commit comments

Comments
 (0)