From 6af3ef9bd21ed69d831b1b27ca553a74eb595ce7 Mon Sep 17 00:00:00 2001 From: olayway Date: Wed, 18 May 2022 22:03:35 +0200 Subject: [PATCH] [components/tootlip][s]: tooltip width adjstmnt --- site/components/Tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/components/Tooltip.js b/site/components/Tooltip.js index 217d2ac..94c3214 100644 --- a/site/components/Tooltip.js +++ b/site/components/Tooltip.js @@ -20,7 +20,7 @@ import documentExtract from '../utils/documentExtract' const tooltipBoxStyle = (theme) => ({ height: 'auto', - maxWidth: '60vw', + maxWidth: '30rem', padding: '1rem', background: theme === 'light' ? '#fff' : '#000', color: theme === 'light' ? 'rgb(99, 98, 98)' : '#A8A8A8',