From f470636a70943a8ecad8bddc791a1c2dddd28e1e Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 4 May 2019 21:13:12 +0300 Subject: Components -> UI --- vnext/src/ui/Button.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vnext/src/ui/Button.css (limited to 'vnext/src/ui/Button.css') diff --git a/vnext/src/ui/Button.css b/vnext/src/ui/Button.css new file mode 100644 index 00000000..2acb87be --- /dev/null +++ b/vnext/src/ui/Button.css @@ -0,0 +1,13 @@ +.Button { + background: #fff; + border: 1px solid #eee; + color: #888; + cursor: pointer; + display: inline-block; + margin: 5px; + padding: 4px 10px; +} +.Button:hover { + background: #f8f8f8; + border-bottom: 1px solid #ff339a; +} -- cgit v1.2.3