From d99dfcea5b1cd24fe50a6c3234d3235e8d442bb5 Mon Sep 17 00:00:00 2001 From: You-j Date: Wed, 25 Aug 2021 15:12:57 +0900 Subject: [PATCH 1/2] fix code option dropdown menu font style --- app/lib/app.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/lib/app.css b/app/lib/app.css index bfb8f5ea..3f3c5600 100644 --- a/app/lib/app.css +++ b/app/lib/app.css @@ -2,6 +2,14 @@ font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif; } +/* + If you want to change the font, be sure to check the following! + tippy-1 is `tippyjs' id. it is only for drop item in @code-ui/docstring +*/ +#tippy-1 li { + font-family: "Source Code Pro", "Courier New", "Lucida Console", Monaco; +} + #create { box-shadow: none; background: #18a0fb; From 914bccb27ef669b429c99a625317210f794e9b05 Mon Sep 17 00:00:00 2001 From: You-j Date: Wed, 25 Aug 2021 15:45:26 +0900 Subject: [PATCH 2/2] add: redirect uri to figma in siginup button --- app/lib/pages/signin/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/lib/pages/signin/index.tsx b/app/lib/pages/signin/index.tsx index 074cb776..cc468924 100644 --- a/app/lib/pages/signin/index.tsx +++ b/app/lib/pages/signin/index.tsx @@ -189,7 +189,9 @@ function Signin() { { - open("https://accounts.grida.co/signup"); + open( + "https://accounts.grida.co/signup?redirect_uri=figma://" + ); // clear states setIsLoading(false); }}