diff options
| author | AAGaming <aagaming@riseup.net> | 2024-07-28 18:36:22 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-08-03 14:04:21 -0400 |
| commit | e00d5171191800378e1d39c1ab658ab4ad8ac41f (patch) | |
| tree | 42907fadfe723452c1d5cb067466772cc685a40a | |
| parent | 241aec26e89c1b6e263e757985c00efb376316bd (diff) | |
| download | decky-loader-e00d5171191800378e1d39c1ab658ab4ad8ac41f.tar.gz decky-loader-e00d5171191800378e1d39c1ab658ab4ad8ac41f.zip | |
fix(DeckyIcon): fix decky icon overflowing in toasts
could still use some padding but eh
| -rw-r--r-- | frontend/src/components/DeckyIcon.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/DeckyIcon.tsx b/frontend/src/components/DeckyIcon.tsx index 85cc2ad7..f07f46d3 100644 --- a/frontend/src/components/DeckyIcon.tsx +++ b/frontend/src/components/DeckyIcon.tsx @@ -1,7 +1,7 @@ import { FC, SVGAttributes } from 'react'; const DeckyIcon: FC<SVGAttributes<SVGElement>> = (props) => ( - <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 456" {...props}> + <svg xmlns="http://www.w3.org/2000/svg" height="100%" width="100%" viewBox="0 0 512 456" {...props}> <g> <path style={{ fill: 'none' }} |
