diff --git a/tgui/packages/tgui/interfaces/PaperSheet.tsx b/tgui/packages/tgui/interfaces/PaperSheet.tsx index beda23bd4a0a..2a0b04d0549e 100644 --- a/tgui/packages/tgui/interfaces/PaperSheet.tsx +++ b/tgui/packages/tgui/interfaces/PaperSheet.tsx @@ -918,7 +918,7 @@ export class PreviewView extends Component { let input = document.createElement('input'); input.setAttribute('type', 'text'); - input.style.fontSize = field.is_signature ? '30px' : `${fontSize}px`; + input.style.fontSize = field.is_signature ? '15px' : `${fontSize}px`; input.style.fontFamily = fieldData.font || font; input.style.fontStyle = field.is_signature ? 'italic' : 'normal'; input.style.fontWeight = 'bold';