From c009bea662d9fc875c8e7cb266cebbfc2985f226 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Tue, 26 Jan 2021 14:54:58 -0300 Subject: Partial commit for #158 - Component GBButton created - New issue form partially created (only title) - Refactoring for GBButon usage Next steps - Practice GraphQL calls - Finish New issue form (add first comment and submit) --- webui/src/components/Button/GBButton.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 webui/src/components/Button/GBButton.css (limited to 'webui/src/components/Button/GBButton.css') diff --git a/webui/src/components/Button/GBButton.css b/webui/src/components/Button/GBButton.css new file mode 100644 index 00000000..1f47fee4 --- /dev/null +++ b/webui/src/components/Button/GBButton.css @@ -0,0 +1,19 @@ +.bt-issue { + background-color: #2ea44fd9; + border: 1px solid; + border-color: #1b1f2326; + border-radius: 6px; + padding: 6px 12px; + + font-size: 14px; + color: #ffffff; + line-height: 20px; + text-decoration: none; + + transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1); +} + +.bt-issue:hover { + background-color: #2ea44f; + border-color: #1b1f2326; +} \ No newline at end of file -- cgit