Merge pull request #6171 from abhishek-bruno/style/update-font-size

style: updated font size to 13px using theme props.
This commit is contained in:
Abhishek S Lal
2025-11-27 22:19:35 +05:30
committed by GitHub
parent 9d98eb86c4
commit 59514127d5
199 changed files with 640 additions and 588 deletions

View File

@@ -10,7 +10,7 @@ const StyledWrapper = styled.div`
color: ${(props) => props.theme.text};
}
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
.body-mode-selector {
background: transparent;

View File

@@ -51,7 +51,7 @@ const ResponseExampleBodyRenderer = ({
switch (bodyMode) {
case 'none':
return (
<div className="text-sm no-body-text">
<div className="no-body-text">
No Body
</div>
);
@@ -91,7 +91,7 @@ const ResponseExampleBodyRenderer = ({
default:
return (
<div className="text-sm no-body-text">
<div className="no-body-text">
No Body
</div>
);

View File

@@ -5,7 +5,7 @@ const StyledWrapper = styled.div`
background-color: transparent;
color: ${(props) => props.theme.text};
font-family: inherit;
font-size: 14px;
font-size: ${(props) => props.theme.font.size.base};
line-height: 1.5;
border: 1px solid transparent;
padding: 0;

View File

@@ -4,7 +4,7 @@ const Wrapper = styled.div`
table {
width: 100%;
border-collapse: collapse;
font-weight: 600;
font-weight: 500;
table-layout: fixed;
thead,
@@ -14,7 +14,7 @@ const Wrapper = styled.div`
thead {
color: ${(props) => props.theme.table.thead.color};
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
user-select: none;
}
td {
@@ -23,7 +23,7 @@ const Wrapper = styled.div`
}
.btn-add-param {
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
}
input[type='text'] {
@@ -49,7 +49,7 @@ const Wrapper = styled.div`
background: none;
border: none;
cursor: pointer;
font-size: 12px;
font-size: ${(props) => props.theme.font.size.sm};
font-weight: 500;
color: ${(props) => props.theme.colors.text.muted};

View File

@@ -4,7 +4,7 @@ const Wrapper = styled.div`
table {
width: 100%;
border-collapse: collapse;
font-weight: 600;
font-weight: 500;
table-layout: fixed;
thead,
@@ -14,7 +14,7 @@ const Wrapper = styled.div`
thead {
color: ${(props) => props.theme.table.thead.color};
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
user-select: none;
}
td {
@@ -23,7 +23,7 @@ const Wrapper = styled.div`
}
.btn-add-param {
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
}
input[type='text'] {

View File

@@ -9,7 +9,7 @@ const StyledWrapper = styled.div`
background: none;
border: none;
cursor: pointer;
font-size: 12px;
font-size: ${(props) => props.theme.font.size.sm};
font-weight: 500;
transition: opacity 0.2s ease;
color: ${(props) => props.theme.colors.text.muted};

View File

@@ -4,7 +4,7 @@ const Wrapper = styled.div`
table {
width: 100%;
border-collapse: collapse;
font-weight: 600;
font-weight: 500;
table-layout: fixed;
thead,
@@ -14,7 +14,7 @@ const Wrapper = styled.div`
thead {
color: ${(props) => props.theme.table.thead.color};
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
user-select: none;
}
td {
@@ -23,7 +23,7 @@ const Wrapper = styled.div`
}
.btn-add-param {
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
}
input[type='text'] {

View File

@@ -10,7 +10,7 @@ const StyledWrapper = styled.div`
background: none;
border: none;
cursor: pointer;
font-size: 12px;
font-size: ${(props) => props.theme.font.size.sm};
font-weight: 500;
transition: opacity 0.2s ease;
color: ${(props) => props.theme.colors.text.muted};
@@ -31,8 +31,8 @@ const StyledWrapper = styled.div`
thead {
td {
font-weight: 600;
font-size: 12px;
font-weight: 500;
font-size: ${(props) => props.theme.font.size.sm};
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 8px 0;

View File

@@ -55,7 +55,7 @@ const ResponseExampleUrlBar = ({ item, collection, editMode, onSave, exampleUid
return (
<StyledWrapper className="flex items-center">
<div className="url-bar-container w-full flex p-2 text-xs rounded-md items-center justify-between" data-testid="url-bar-container">
<div className={`method flex text-xs items-center justify-center px-2 rounded h-6 flex-shrink-0 mr-2 overflow-hidden whitespace-nowrap font-semibold uppercase ${getMethodClass()}`}>
<div className={`method flex text-xs items-center justify-center px-2 rounded h-6 flex-shrink-0 mr-2 overflow-hidden whitespace-nowrap font-medium uppercase ${getMethodClass()}`}>
{method || 'GET'}
</div>

View File

@@ -1,7 +1,7 @@
import styled from 'styled-components';
const StyledWrapper = styled.div`
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.base};
height: 300px;
.body-mode-selector {