mirror of
https://github.com/usebruno/bruno.git
synced 2025-06-24 22:11:38 +02:00
apply tab styles only to elements with specific roles
This commit is contained in:
parent
4dd17a3215
commit
1aa5b3096b
@ -3,7 +3,7 @@ import styled from 'styled-components';
|
|||||||
const Wrapper = styled.div`
|
const Wrapper = styled.div`
|
||||||
border-bottom: 1px solid ${(props) => props.theme.requestTabs.bottomBorder};
|
border-bottom: 1px solid ${(props) => props.theme.requestTabs.bottomBorder};
|
||||||
|
|
||||||
ul {
|
ul[role="tablist"] {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -15,7 +15,7 @@ const Wrapper = styled.div`
|
|||||||
|
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
|
|
||||||
li {
|
li[role="tab"] {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
max-width: 150px;
|
max-width: 150px;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user