fix sizing

This commit is contained in:
talksik
2022-05-19 16:47:59 -05:00
parent 0b8e608481
commit bec5a4bc0a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.colorTheme": "Default Light+", "workbench.colorTheme": "Default Light+",
"javascript.format.semicolons": "insert", "javascript.format.semicolons": "insert",
"window.zoomLevel": 0 "window.zoomLevel": 2
// "eslint.workingDirectories": ["./packages/desktop"] // "eslint.workingDirectories": ["./packages/desktop"]
} }
+1 -1
View File
@@ -18,7 +18,7 @@ function LineIcon({
return ( return (
<> <>
{isMultiple ? ( {isMultiple ? (
<div className={`relative ${grayscale ? 'grayscale' : ''} h-[40px] w-[40px]`}> <div className={`relative ${grayscale ? 'grayscale' : ''} h-[40px] w-[40px] flex-grow-0`}>
{sourceImages.map((avatarSrc, index) => { {sourceImages.map((avatarSrc, index) => {
if (index === 0) { if (index === 0) {
return ( return (