From 89ef1c82537098ab7f165f9b8d602920ba804248 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 29 Mar 2019 16:32:14 -0300 Subject: [PATCH] (add) copy icon css --- .../assets/css/components/_copy_icon.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/block_scout_web/assets/css/components/_copy_icon.scss diff --git a/apps/block_scout_web/assets/css/components/_copy_icon.scss b/apps/block_scout_web/assets/css/components/_copy_icon.scss new file mode 100644 index 0000000000..0aafd98924 --- /dev/null +++ b/apps/block_scout_web/assets/css/components/_copy_icon.scss @@ -0,0 +1,17 @@ +$copy-icon-color: $primary !default; + +.copy-icon { + cursor: pointer; + height: 18px; + width: 18px; + + svg { + display: block; + height: 100%; + width: 100%; + } + + path { + fill: $copy-icon-color; + } +} \ No newline at end of file