fix overflow

This commit is contained in:
plebbitor
2023-02-11 22:29:12 +01:00
parent 332b5f8c29
commit 62ab1274e8
+13 -8
View File
@@ -373,7 +373,7 @@ export const PostFormLink = styled.div`
export const PostFormTable = styled.table` export const PostFormTable = styled.table`
display: ${props => (props.showPostForm ? 'table' : 'none')}; display: ${props => (props.showPostForm ? 'table' : 'none')};
width: 468px; width: 418px;
border-spacing: 1px; border-spacing: 1px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@@ -540,7 +540,7 @@ export const PostFormTable = styled.table`
td { td {
padding: 0; padding: 0;
font-size: 10pt; font-size: 12pt;
} }
tbody > tr > td > input[type="text"] { tbody > tr > td > input[type="text"] {
@@ -609,12 +609,11 @@ export const PostFormTable = styled.table`
color: #000; color: #000;
font-weight: 700; font-weight: 700;
padding: 0; padding: 0;
font-size: 10pt; font-size: 12pt;
} }
td { td {
padding: 0; padding: 0;
font-size: 10pt;
} }
tbody > tr > td > input[type="text"] { tbody > tr > td > input[type="text"] {
@@ -962,7 +961,7 @@ export const TopBar = styled.div`
.style-changer { .style-changer {
margin-left: 5px; margin-left: 5px;
font-size: 10pt; font-size: 12pt;
}`; }`;
case 'Burichan': case 'Burichan':
@@ -973,7 +972,7 @@ export const TopBar = styled.div`
.style-changer { .style-changer {
margin-left: 5px; margin-left: 5px;
font-size: 10pt; font-size: 12pt;
}`; }`;
case 'Tomorrow': case 'Tomorrow':
@@ -1266,7 +1265,10 @@ export const BoardForm = styled.form`
}`; }`;
case 'Futaba': case 'Futaba':
return `.thread { return `
font-size: 12pt;
.thread {
margin: 0; margin: 0;
clear: both; clear: both;
} }
@@ -1398,7 +1400,10 @@ export const BoardForm = styled.form`
}`; }`;
case 'Burichan': case 'Burichan':
return `.thread { return `
font-size: 12pt;
.thread {
margin: 0; margin: 0;
clear: both; clear: both;
} }