mirror of
https://github.com/usebruno/bruno.git
synced 2025-02-02 10:59:22 +01:00
chore: prettify icon styling updates
This commit is contained in:
parent
f64e13a71f
commit
96bcc7074a
@ -4,7 +4,6 @@ const Wrapper = styled.div`
|
|||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
font-weight: 600;
|
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
|
||||||
thead,
|
thead,
|
||||||
@ -16,6 +15,7 @@ const Wrapper = styled.div`
|
|||||||
color: ${(props) => props.theme.table.thead.color};
|
color: ${(props) => props.theme.table.thead.color};
|
||||||
font-size: 0.8125rem;
|
font-size: 0.8125rem;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
td {
|
td {
|
||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
|
@ -217,8 +217,9 @@ export default class QueryEditor extends React.Component {
|
|||||||
<button
|
<button
|
||||||
className="btn-add-param text-link px-4 py-4 select-none absolute top-0 right-0 z-10"
|
className="btn-add-param text-link px-4 py-4 select-none absolute top-0 right-0 z-10"
|
||||||
onClick={this.beautifyRequestBody}
|
onClick={this.beautifyRequestBody}
|
||||||
|
title="prettify"
|
||||||
>
|
>
|
||||||
<IconWand />
|
<IconWand size={20} strokeWidth={1.5} />
|
||||||
</button>
|
</button>
|
||||||
</StyledWrapper>
|
</StyledWrapper>
|
||||||
</>
|
</>
|
||||||
|
24
packages/bruno-tests/collection/graphql/spacex.bru
Normal file
24
packages/bruno-tests/collection/graphql/spacex.bru
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
meta {
|
||||||
|
name: spacex
|
||||||
|
type: graphql
|
||||||
|
seq: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
url: https://spacex-production.up.railway.app/
|
||||||
|
body: graphql
|
||||||
|
auth: none
|
||||||
|
}
|
||||||
|
|
||||||
|
body:graphql {
|
||||||
|
{
|
||||||
|
company {
|
||||||
|
ceo
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
assert {
|
||||||
|
res.status: eq 200
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user