Fix padding on Fn Store Gateway UI

The padding was off on the Gateway UI for the function
Store popup.

I have removed the 0padding css class from this element and left
it on the elements that require it

Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
This commit is contained in:
Alistair Hey
2020-02-23 21:57:20 +00:00
committed by Alex Ellis
parent ac1caa2897
commit b4bed58b66
6 changed files with 24 additions and 11 deletions

View File

@ -21,7 +21,14 @@ if [ "$1" ] ; then
fi
fi
echo Pushing openfaas/gateway:$eTAG
docker push openfaas/gateway:$eTAG
if [ "$2" ] ; then
NS=$2
else
NS=openfaas
fi
echo Pushing $NS/gateway:$eTAG
docker push $NS/gateway:$eTAG