From ceed9accc2fbcfa6159d1b29f836132b921a3c31 Mon Sep 17 00:00:00 2001 From: Samuel Elliott Date: Sat, 20 Aug 2022 20:23:10 +0100 Subject: [PATCH] Fix add button position --- src/app/browser/components/icons/util.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/browser/components/icons/util.ts b/src/app/browser/components/icons/util.ts index 4f00ee9..c348df7 100644 --- a/src/app/browser/components/icons/util.ts +++ b/src/app/browser/components/icons/util.ts @@ -1,7 +1,9 @@ import React from 'react'; export const svg_styles: React.CSSProperties = { - height: '1em', + height: '1.2em', width: 'auto', fill: 'currentColor', + alignSelf: 'center', + verticalAlign: -4, };